Skip to content

Commit

Permalink
ci: don't check version number
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Oct 16, 2024
1 parent 284c241 commit 88466c9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
with:
toolchain: stable

- name: Check version number
shell: bash
run: |
set -ex
version=`cargo pkgid --manifest-path lib/Cargo.toml | cut -d "@" -f2`
if [ "${{ github.ref_name }}" != "v$version" ]; then
exit 1
fi
#- name: Check version number
# shell: bash
# run: |
# set -ex
# version=`cargo pkgid --manifest-path lib/Cargo.toml | cut -d "@" -f2`
# if [ "${{ github.ref_name }}" != "v$version" ]; then
# exit 1
# fi

- run: rustup target add ${{ matrix.target }}

Expand Down

0 comments on commit 88466c9

Please sign in to comment.