collectorset-controller-7.3.0 #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate and Upload Release assets | |
on: | |
release: | |
types: [ created ] | |
jobs: | |
build: | |
name: Add release chart configuration file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get release | |
id: get_release | |
uses: bruceadams/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Get chart name from release | |
id: get_chart | |
run: | | |
chartname=$(echo "${{ steps.get_release.outputs.tag_name }}" | grep -E "^(.*)-[0-9\.]+" -o | rev | cut -d'-' -f2- | rev) | |
chartversion=$(echo "${{ steps.get_release.outputs.tag_name }}" | grep -Eio "[0-9\.]+(-[^\+]+)?") | |
echo "::set-output name=chartname::$chartname" | |
echo "::set-output name=chartversion::$chartversion" | |
- name: check values.yaml exists | |
id: values_yaml_exists | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: "./charts/${{ steps.get_chart.outputs.chartname }}/values.yaml" | |
- name: add values.yaml to release asset | |
if: steps.values_yaml_exists.outputs.files_exists == 'true' | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.get_release.outputs.upload_url }} | |
asset_path: ./charts/${{ steps.get_chart.outputs.chartname }}/values.yaml | |
asset_name: ${{ steps.get_chart.outputs.chartname }}-configuration.yaml | |
asset_content_type: text/plain | |
- name: check values.schema.json exists | |
id: values_schema_exists | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: "./charts/${{ steps.get_chart.outputs.chartname }}/values.schema.json" | |
- name: add values.schema.json to release asset | |
uses: actions/[email protected] | |
if: steps.values_schema_exists.outputs.files_exists == 'true' | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.get_release.outputs.upload_url }} | |
asset_path: ./charts/${{ steps.get_chart.outputs.chartname }}/values.schema.json | |
asset_name: values.schema.json | |
asset_content_type: text/plain | |
- name: Install Helm | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.5.4 | |
- name: Wait for gh-pages to publish index.yaml | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
uses: lewagon/[email protected] | |
with: | |
ref: "gh-pages" | |
running-workflow-name: "pages-build-deployment" | |
repo-token: ${{ secrets.CHART_RELEASE_TOKEN }} | |
wait-interval: 10 | |
- name: Pull Charts and Generate UI Template | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
run: | | |
helm repo add logicmonitor https://logicmonitor.github.io/helm-charts | |
helm pull logicmonitor/lm-container --untar --version ${{ steps.get_chart.outputs.chartversion }} | |
./scripts/lmui/lmui > lm-container-ui-jsonpaths.json | |
cat lm-container-ui-jsonpaths.json | |
- name: Upload ui template to release asset | |
uses: actions/[email protected] | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.get_release.outputs.upload_url }} | |
asset_path: ./lm-container-ui-jsonpaths.json | |
asset_name: lm-container-ui-jsonpaths.json | |
asset_content_type: text/plain | |
- name: checkout gh-pages | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
path: gh-pages | |
ref: gh-pages | |
- name: Copy UI Template to gh-pages branch | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
run: | | |
cp ./lm-container-ui-jsonpaths.json gh-pages/uitmpl/lm-container-${{ steps.get_chart.outputs.chartversion }}-ui-jsonpaths.json | |
- name: Upload UI Jsonpath template to gh-pages | |
if: steps.get_chart.outputs.chartname == 'lm-container' | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
branch: gh-pages | |
repository: gh-pages | |
commit_message: "docs(uitmpl): upload ui jsonpaths template" | |
file_pattern: "uitmpl/*-ui-jsonpaths.json" |