Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Dec 18, 2024
1 parent 1c854c4 commit 7ca25a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Determine Final Tag
run: |
ALL_TAGS="${{ steps.meta.outputs.tags }}"
SHA_TAG=$(echo "$ALL_TAGS" | grep sha-)
SEMVER_TAG=$(echo "$ALL_TAGS" | grep '^ghcr.io/.*:v')
SEMVER_TAG=$(echo "$ALL_TAGS" | grep '^ghcr.io/.*:v' || true)
SHA_TAG=$(echo "$ALL_TAGS" | grep sha- || true)
if [ -n "$SEMVER_TAG" ]; then
FINAL_TAG="$SEMVER_TAG"
Expand Down

0 comments on commit 7ca25a4

Please sign in to comment.