bump chart to 0.3.2 #28
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: Release Helm Charts | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'charts/**' | |
permissions: | |
contents: read | |
jobs: | |
changes: | |
permissions: | |
contents: read # for dorny/paths-filter to fetch a list of changed files | |
pull-requests: read # for dorny/paths-filter to read pull requests | |
runs-on: ubuntu-latest | |
if: | | |
(github.repository == 'kriegalex/k8s-charts') | |
outputs: | |
charts: ${{ steps.filter.outputs.charts }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Artifact Hub lint | |
run: | | |
wget https://github.com/artifacthub/hub/releases/download/v1.5.0/ah_1.5.0_linux_amd64.tar.gz | |
echo 'ad0e44c6ea058ab6b85dbf582e88bad9fdbc64ded0d1dd4edbac65133e5c87da *ah_1.5.0_linux_amd64.tar.gz' | shasum -c | |
tar -xzvf ah_1.5.0_linux_amd64.tar.gz ah | |
./ah lint || exit 1 | |
rm -f ./ah ./ah_1.5.0_linux_amd64.tar.gz | |
- uses: dorny/[email protected] | |
id: filter | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
filters: | | |
charts: | |
- 'charts/*/Chart.yaml' | |
chart: | |
name: Release Chart | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # needed to write releases | |
needs: | |
- changes | |
if: | | |
(github.repository == 'kriegalex/k8s-charts') && | |
(needs.changes.outputs.charts == 'true') | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v4 | |
with: | |
# Fetch entire history. Required for chart-releaser; see https://github.com/helm/chart-releaser-action/issues/13#issuecomment-602063896 | |
fetch-depth: 0 | |
submodules: 'true' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup | |
shell: bash | |
run: | | |
git config --global user.name "$GITHUB_ACTOR" | |
git config --global user.email "[email protected]" | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Helm Chart Releaser | |
uses: helm/[email protected] | |
env: | |
CR_SKIP_EXISTING: "true" | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |