Skip to content

Commit

Permalink
feat: now release automatically does helm push
Browse files Browse the repository at this point in the history
Signed-off-by: Bilal <[email protected]>
  • Loading branch information
byhlel committed Sep 23, 2024
1 parent 22d9fdf commit 572e160
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/release-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,24 @@ jobs:
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
helm:
permissions:
contents: read
packages: write
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GH_PAT }}

- name: Build and Push the Helm Charts to GitHub Container Registry
uses: JimCronqvist/action-helm-chart-repo@master
with:
token: ${{ secrets.GH_PAT }}

merge:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -110,4 +128,4 @@ jobs:
- name: Inspect image
run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}

0 comments on commit 572e160

Please sign in to comment.