Skip to content

Commit 1ae6f02

Browse files
committed
wip
Signed-off-by: Yuval Turgeman <yturgema@redhat.com>
1 parent 2289502 commit 1ae6f02

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
version=$(grep '^version:' ${{ matrix.chart }} | awk '{print $2}')
3131
echo "value=$version" >> $GITHUB_OUTPUT
3232
33+
- name: Delete release branch
34+
run: |
35+
git push origin --delete ${{ github.event.pull_request.head.ref }} || true
36+
3337
- name: Create git tag
3438
run: |
3539
git config user.name "github-actions[bot]"
@@ -42,6 +46,10 @@ jobs:
4246
with:
4347
version: 'latest'
4448

49+
- name: Update Helm dependencies
50+
run: |
51+
helm dependency update deploy/helm/rag
52+
4553
- name: Package Helm chart
4654
run: |
4755
helm package deploy/helm/rag -d .
@@ -74,5 +82,3 @@ jobs:
7482
file: ${{ matrix.context }}/Containerfile
7583
push: true
7684
tags: quay.io/yuvalturg/${{ matrix.name }}:${{ steps.version.outputs.value }}
77-
build-args: |
78-
IMAGE_TAG=${{ steps.version.outputs.value }}

0 commit comments

Comments
 (0)