make_helm_chart #1
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: "[Dispatch] Make Helm Chart" | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: [make_helm_chart] | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
jobs: | |
helm_cloudforet: | |
if: github.repository_owner == 'cloudforet-io' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: '3.4.0' | |
- name: Run Helm packaging | |
run: | | |
export cache_dir=/tmp/helm | |
mkdir -p "$cache_dir" | |
echo "Installing chart-releaser..." | |
curl -sSLo cr.tar.gz "https://github.com/helm/chart-releaser/releases/download/v1.2.0/chart-releaser_1.2.0_linux_amd64.tar.gz" | |
tar -xzf cr.tar.gz -C "$cache_dir" | |
rm -f cr.tar.gz | |
echo 'Adding cr directory to PATH...' | |
export PATH="$cache_dir:$PATH" | |
rm -rf .deploy | |
echo 'Print Version ...' | |
export SERVICE=$(echo ${{ github.repository }} | cut -d '/' -f2) | |
echo 'Update helm version in chart.yaml and values.yaml' | |
echo "SERVICE=${SERVICE}" >> $GITHUB_ENV | |
helm package deploy/helm --destination .deploy | |
cr upload -o cloudforet-io -r charts -p .deploy --token ${{ secrets.PAT_TOKEN }} | |
cr index -i ./index.yaml -p .deploy/ -o cloudforet-io -r charts -c https://cloudforet-io.github.io/charts --token ${{ secrets.PAT_TOKEN }} | |
cp index.yaml /tmp/index.yaml | |
- name: Check out chart repo | |
uses: actions/checkout@master | |
with: | |
repository: cloudforet-io/charts | |
ref: gh-pages | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Update Helm repository index.yaml | |
run: | | |
git config --global user.email admin@cloudforet.io | |
git config --global user.name cloudforet-admin | |
cp /tmp/index.yaml ./ | |
git add index.yaml | |
git pull | |
git commit -m "Add ${SERVICE} chart" | |
git push origin gh-pages | |
- name: Notice when job fails | |
if: failure() | |
uses: 8398a7/action-slack@v3.15.0 | |
with: | |
status: ${{job.status}} | |
fields: repo,workflow,job | |
author_name: Github Action Slack | |
notify_to_slack: | |
if: github.repository_owner == 'cloudforet-io' | |
needs: [helm_cloudforet] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack | |
if: always() | |
uses: 8398a7/action-slack@v3.15.0 | |
with: | |
status: ${{job.status}} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took | |
author_name: Github Action Slack |