Skip to content
Open
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
12 changes: 12 additions & 0 deletions .github/workflows/release-chart.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Release Charts

permissions:
contents: read
packages: write

Comment on lines +3 to +6
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Für die Tests in NorddeutscherRundfunk#2 brauchte ich das. Kann aber gut sein, dass das hier anders ist. 🤔

on:
workflow_run:
workflows:
Expand Down Expand Up @@ -30,3 +34,11 @@ jobs:
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: Run chart-releaser - oci
uses: bitdeps/helm-oci-charts-releaser@v0.1.5
with:
oci_registry: ghcr.io/subshell/helm-charts
oci_username: xxx
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hier hatte ich in meinen Tests meinen Username gesetzt. Richtig erscheint mir das aber nicht. Vielleicht reicht da ein dummy?

oci_password: '${{ secrets.GITHUB_TOKEN }}'
github_token: '${{ secrets.GITHUB_TOKEN }}'
skip_gh_release: 'true'
Copy link
Copy Markdown
Contributor Author

@muffl0n muffl0n Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Die Releases werden ja schon in Run chart-releaser gemacht, deswegen muss das hier geskipped werden. Es kann aber gut sein, dass hier das Erkennen von latest nicht mehr richtig funktioniert, weil Run chart-releaser schon ein Tag gesetzt hat.

Also vielleicht wäre es das beste, hier skip_gh_release und auch den Step Run chart-releaser zu entfernen. Dann macht Run chart-releaser - oci alles und die beiden kommen sich nicht in die Quere.

Loading