mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
Merge pull request #2034 from nextcloud/enh/1582/add-helm-chart-release
Add Helm Chart Releaser workflow
This commit is contained in:
commit
af974046f5
1 changed files with 49 additions and 0 deletions
49
.github/workflows/helm-release.yml
vendored
Normal file
49
.github/workflows/helm-release.yml
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
|
||||||
|
name: Helm Chart Releaser
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'helm-chart/**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Turnstyle
|
||||||
|
uses: softprops/turnstyle@v1
|
||||||
|
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 "$GITHUB_ACTOR@users.noreply.github.com"
|
||||||
|
|
||||||
|
# See https://github.com/helm/chart-releaser-action/issues/6
|
||||||
|
- name: Set up Helm
|
||||||
|
uses: azure/setup-helm@v3.1
|
||||||
|
with:
|
||||||
|
version: v3.6.3
|
||||||
|
|
||||||
|
- name: Run chart-releaser
|
||||||
|
# TODO: switch back @main to a specific version like @v1.5.1 or higher
|
||||||
|
uses: helm/chart-releaser-action@main
|
||||||
|
with:
|
||||||
|
charts_repo_url: https://nextcloud.github.io/all-in-one
|
||||||
|
charts_dir: helm-chart
|
||||||
|
mark_as_latest: false
|
||||||
|
env:
|
||||||
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}"
|
||||||
|
CR_SKIP_EXISTING: true
|
||||||
Loading…
Add table
Add a link
Reference in a new issue