-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7725906
commit 9f90edc
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
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 [email protected] | ||
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/[email protected] | ||
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/[email protected] | ||
with: | ||
status: ${{job.status}} | ||
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took | ||
author_name: Github Action Slack |