Skip to content

Commit 544ef27

Browse files
authored
Fix release version comparison (#92)
1 parent b67bc9e commit 544ef27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
MANIFEST_VERSION=$(cat manifest.json | python3 -c "import sys, json; print(json.load(sys.stdin)['version'])")
2525
TAG_VERSION=${{ github.ref_name }}
26-
test "${MANIFEST_VERSION}" = "${TAG_VERSION}"
26+
test "v${MANIFEST_VERSION}" = "${TAG_VERSION}"
2727
- run: bazel build ...
2828
- run: bazel test --test_output=errors ...
2929
- name: Create Release

0 commit comments

Comments
 (0)