Merge pull request #5000 from nextcloud/aio-helm-update #117
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: Helm Chart Releaser | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'nextcloud-aio-helm-chart/**' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Turnstyle | |
uses: softprops/turnstyle@v2 | |
with: | |
continue-after-seconds: 180 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
# See https://github.com/helm/chart-releaser-action/issues/6 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.6.3 | |
- name: Run Helm Lint | |
run: | | |
helm lint ./nextcloud-aio-helm-chart | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
mark_as_latest: false | |
charts_dir: . | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}" | |
CR_SKIP_EXISTING: true |