Skip to content

Commit

Permalink
Merge pull request #67 from cybozu-go/fix-latest-image-condition
Browse files Browse the repository at this point in the history
Fix latest image condition in release workflow
  • Loading branch information
masa213f authored Aug 13, 2021
2 parents 0484d51 + 354cfd6 commit 8b1a860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- run: make image
- run: make tag push IMAGE_PREFIX=quay.io/cybozu/ IMAGE_TAG=${GITHUB_REF#refs/tags/v}
- run: make tag push IMAGE_PREFIX=quay.io/cybozu/ IMAGE_TAG=latest
if: ${{ contains(github.ref, '-') }}
if: ${{ ! contains(github.ref, '-') }}
release:
name: Release on GitHub
needs: image
Expand Down

0 comments on commit 8b1a860

Please sign in to comment.