From 857493c91255b1dc581ab42950053b99e3a49fbf Mon Sep 17 00:00:00 2001 From: almog8k Date: Thu, 29 Jan 2026 12:05:23 +0200 Subject: [PATCH] fix: add GitHub token to artifact update steps in CI workflow --- .github/workflows/build_and_push.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build_and_push.yml b/.github/workflows/build_and_push.yml index 8e797c4..f9f6f0b 100644 --- a/.github/workflows/build_and_push.yml +++ b/.github/workflows/build_and_push.yml @@ -66,6 +66,7 @@ jobs: artifact_tag: ${{ github.ref_name }} type: docker registry: ${{ secrets.ACR_URL }} + github_token: ${{ secrets.GH_PAT }} - name: Update Artifacts File - CLI Docker uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v1.1.1 @@ -75,6 +76,7 @@ jobs: artifact_tag: ${{ github.ref_name }} type: docker registry: ${{ secrets.ACR_URL }} + github_token: ${{ secrets.GH_PAT }} - name: Update Artifacts File -Service Helm uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v1.1.1 @@ -84,3 +86,4 @@ jobs: artifact_tag: ${{ github.ref_name }} type: helm registry: ${{ secrets.ACR_URL }} + github_token: ${{ secrets.GH_PAT }}