Skip to content

Release Helm Chart

Release Helm Chart #39

name: Release Helm Chart
on:
workflow_dispatch:
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Wait for container images build
run: |
while :; do
result=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
https://api.github.com/repos/${{ github.repository }}/actions/runs | \
jq -r '.workflow_runs | map(select(.name == "Release container images")) | sort_by(.created_at) | reverse | .[0]')
status=$(echo "$result" | jq -r '.status')
conclusion=$(echo "$result" | jq -r '.conclusion')
if [[ "$status" == "completed" ]]; then
if [[ "$conclusion" == "success" ]]; then
echo "Release container images workflow completed successfully"
break
else
echo "Release container images workflow failed"
exit 1
fi
elif [[ "$status" == "in_progress" ]]; then
echo "Release container images workflow is still running"
sleep 60
else
echo "Release container images workflow returned unexpected status: $status"
exit 1
fi
done
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm
if: true
uses: azure/setup-helm@v3
with:
token: ${{ github.token }}
- name: Add dependencies
if: true
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Configure git
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Semantic Release
id: semantic-release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
semantic_version: 19.0.5
branch: main
extra_plugins: |
semantic-release-helm3@2.9.3
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
charts_dir: helm
config: .github/configs/cr.yaml
skip_existing: true