From a37f5d9d0b2c6483c8f66b811abee3aaeca423ef Mon Sep 17 00:00:00 2001 From: roicohen <213414225+roicohen326@users.noreply.github.com> Date: Mon, 16 Feb 2026 13:58:25 +0200 Subject: [PATCH] fix: add token to build workflow for private actions access --- .github/workflows/build-and-push.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index b70e1a9..fd0e42d 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -14,6 +14,8 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 + with: + token: ${{ secrets.GH_PAT }} - name: Login to ACR uses: MapColonies/artifactory-login@v1.0.0 @@ -36,3 +38,4 @@ jobs: domain: raster project: ${{ github.repository }} tag: ${{ github.ref_name }} + github_token: ${{ secrets.GH_PAT }}