Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,30 @@ on:
paths:
- 'charts/**'

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v1
uses: azure/setup-helm@v3
with:
version: v3.4.0
version: v3.14.4
- name: Add Repo
run: helm repo add k8s-as-helm https://ameijer.github.io/k8s-as-helm
run: |
helm repo add k8s-as-helm https://ameijer.github.io/k8s-as-helm
helm repo update
- name: Run chart-releaser
uses: helm/chart-releaser-action@39ca3e607fa86db3e4199276373c41a2422897f7
env:
CR_TOKEN: '${{ secrets.CR_SECRET }}'
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}