Skip to content

Commit

Permalink
Update chart releaser action
Browse files Browse the repository at this point in the history
  • Loading branch information
BWibo committed Feb 20, 2024
1 parent dee561b commit 3a2a378
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/chart-releaser.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Release Charts

on:
push:
branches:
- main
paths:
- charts/tum-gis-iot-stack-k8s/**
# push:
# branches:
# - main

# paths:
# - charts/tum-gis-iot-stack-k8s/**

pull_request:

jobs:
release:
Expand All @@ -16,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -26,11 +29,14 @@ jobs:
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v1
uses: azure/setup-helm@v4
with:
version: v3.11.3
version: v3.14.1

- name: Run chart-releaser
uses: helm/[email protected]
uses: helm/[email protected]
with:
mark_as_latest: false
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GH_TOKEN }}"
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 3a2a378

Please sign in to comment.