diff options
author | Vendicated <vendicated@riseup.net> | 2023-01-29 00:12:27 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-01-29 00:12:27 +0100 |
commit | e32388e3ac8f2eada8ea2620e163d6e53dada7a0 (patch) | |
tree | 68bcadba0ccd8e074fe8161e5dd60202cf1f6364 | |
parent | 823fa2d0c3c1b7cfaae61736ecbe721aca7f5171 (diff) | |
download | Vencord-e32388e3ac8f2eada8ea2620e163d6e53dada7a0.tar.gz Vencord-e32388e3ac8f2eada8ea2620e163d6e53dada7a0.tar.bz2 Vencord-e32388e3ac8f2eada8ea2620e163d6e53dada7a0.zip |
ci: fix version check
-rw-r--r-- | .github/workflows/publish.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 34738b9..0b12176 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: - name: check that tag matches package.json version run: | - pkg_version="$(jq -r .version < package.json)" + pkg_version="v$(jq -r .version < package.json)" if [[ "${{ github.ref_name }}" != "$pkg_version" ]]; then echo "Tag ${{ github.ref_name }} does not match package.json version $pkg_version" >&2 exit 1 |