Skip to content

Commit

Permalink
Add missing token env var
Browse files Browse the repository at this point in the history
  • Loading branch information
fheinecke committed Nov 12, 2024
1 parent 983caa9 commit 5baf10c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/reusable-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 5baf10c

Please sign in to comment.