From 5baf10cb6f5138ab51427f04e582a0c0a878bcc3 Mon Sep 17 00:00:00 2001 From: Fred Heinecke Date: Tue, 12 Nov 2024 13:37:41 -0600 Subject: [PATCH] Add missing token env var --- .github/workflows/reusable-cd.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-cd.yaml b/.github/workflows/reusable-cd.yaml index 33709b8..5072c5a 100644 --- a/.github/workflows/reusable-cd.yaml +++ b/.github/workflows/reusable-cd.yaml @@ -13,7 +13,7 @@ on: jobs: release: name: Release - runs-on: ubuntu-latest + runs-on: ubuntu-22.04-8core permissions: contents: write # Needed to create the release packages: write # Needed to upload the images to GHCR @@ -118,6 +118,7 @@ jobs: env: VERSION: ${{ steps.setup.outputs.version }} IS_PRERELEASE: ${{ steps.setup.outputs.is-prerelease }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | if [[ "${IS_PRERELEASE}" == 'true' ]]; then EXTRA_FLAGS=("--prerelease")