Skip to content

Commit

Permalink
ci: fix a really small typo expecting tags to start with v (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecbcs committed Aug 12, 2024
1 parent 7269ce6 commit bea53d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
cache-from: type=registry,ref=ghcr.io/spack/tutorial:buildcache
cache-to: ${{ github.ref == github.event.repository.default_branch
&& 'type=registry,ref=ghcr.io/spack/tutorial:buildcache,mode=max' || '' }}
outputs: ${{ (github.ref == github.event.repository.default_branch || startsWith(github.ref, 'refs/tags/v'))
outputs: ${{ (github.ref == github.event.repository.default_branch || startsWith(github.ref, 'refs/tags/'))
&& 'type=registry' || 'type=docker,dest=/tmp/tutorial-container.tar' }}

- name: Upload container as artifact for PRs
Expand Down

0 comments on commit bea53d0

Please sign in to comment.