-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add GHA to release image and helm chart and limit Dev Pipeline
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Push image to GHCR and Helm Chart to helm-charts-registry | ||
name: Release Image and Helm Chart | ||
on: | ||
push: | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
|
||
concurrency: | ||
group: dbildungs-iam-server-image-helm-chart | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
release_image_and_helm_chart: | ||
name: "Release image and Helm Chart" | ||
secrets: inherit | ||
permissions: | ||
packages: write | ||
security-events: write | ||
contents: read | ||
actions: read | ||
uses: dBildungsplattform/dbp-github-workflows/.github/workflows/release-image-and-helm-chart.yaml@5 | ||
with: | ||
release_tag: ${{ github.ref_name }} | ||
image_name: "dbildungs-iam-server" | ||
helm_chart_name: "dbildungs-iam-server" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ name: "Dev Pipeline" | |
# See DBP-340 | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
schedule: | ||
- cron: '0 2 * * *' | ||
delete: | ||
|