Skip to content

Commit

Permalink
chore(ci): Enforce tag == version and does not start with v
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Nov 12, 2024
1 parent c02bdc1 commit b9871f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deno_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check tag matches ${{ github.ref_name }}
run: jq -e ".version==\"${TAG#v}\"" deno.json
run: jq -e ".version[:1] != \"v\" and .version==\"$TAG\"" deno.json
env:
TAG: ${{ github.ref_name }}
- uses: denoland/setup-deno@v2
Expand Down

0 comments on commit b9871f6

Please sign in to comment.