Skip to content

Commit

Permalink
fix(ci): docker tag not generated on workflow_dispatch input "nightly"
Browse files Browse the repository at this point in the history
Signed-off-by: Vedant Mohan Goyal <[email protected]>
  • Loading branch information
vedantmgoyal9 authored Dec 4, 2024
1 parent 6550210 commit 8b9a634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
images: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}
tags: |
type=raw,value=${{ steps.goreleaser.outputs.version }},enable=${{ startsWith(inputs.release-tag, 'v') }}
type=raw,value=${{ steps.goreleaser.outputs.version }},enable=${{ github.event_name == 'workflow_dispatch' }}
type=ref,event=branch,enable=${{ github.event_name == 'push' }}
type=ref,prefix=pr-,event=pr,enable=${{ github.event_name == 'pull_request' }}
type=schedule,pattern=nightly,enable=${{ github.event_name == 'schedule' }}
Expand Down

0 comments on commit 8b9a634

Please sign in to comment.