From f6ed8bdec20be70cd1bfb3a68a33bb2279e2f904 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Tue, 30 Apr 2024 09:46:49 +0200 Subject: [PATCH] ci: don't check version number --- .github/workflows/release.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 701118364..2c8ae520e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -114,14 +114,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 - name: Install Python uses: actions/setup-python@v4