From 25470ef7f8fc86bee6324705a2665c8593303c06 Mon Sep 17 00:00:00 2001 From: UncleGedd <42304551+UncleGedd@users.noreply.github.com> Date: Mon, 13 Nov 2023 09:46:00 -0600 Subject: [PATCH] fix: updates release CI to write to GHCR for e2e tests (#191) --- .github/workflows/release.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 30774495..7b218deb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -37,6 +37,7 @@ jobs: validate: runs-on: ubuntu-latest + permissions: write-all needs: build steps: # Checkout the repo and setup the tooling for this job @@ -61,6 +62,13 @@ jobs: - name: Setup K3d uses: ./.github/actions/k3d + - name: Login to GHCR + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Install Zarf uses: ./.github/actions/zarf