Skip to content

Commit

Permalink
Fix release version comparison (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralimi authored Jan 29, 2023
1 parent b67bc9e commit 544ef27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: |
MANIFEST_VERSION=$(cat manifest.json | python3 -c "import sys, json; print(json.load(sys.stdin)['version'])")
TAG_VERSION=${{ github.ref_name }}
test "${MANIFEST_VERSION}" = "${TAG_VERSION}"
test "v${MANIFEST_VERSION}" = "${TAG_VERSION}"
- run: bazel build ...
- run: bazel test --test_output=errors ...
- name: Create Release
Expand Down

0 comments on commit 544ef27

Please sign in to comment.