Skip to content

Commit

Permalink
Fix version comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
partiallyordered committed Jul 22, 2021
1 parent f83cb0c commit b1396bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
PACKAGE_VER="v$(jq -r '.version' package.json)"
echo "$PACKAGE_VER"
echo "$GITHUB_REF"
[[ "$PACKAGE_VER" == "$GITHUB_REF" ]]
[[ "refs/tags/$PACKAGE_VER" == "$GITHUB_REF" ]]
-
name: Docker meta
id: docker_meta
Expand Down

0 comments on commit b1396bb

Please sign in to comment.