From 2da5b10088a0b2984982b478a665f809168bc369 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Fri, 19 Apr 2024 16:28:04 +0200 Subject: [PATCH] Remove the version mismatch check from the release action --- .github/workflows/release.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 820208c..b6c8419 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,14 +16,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Check that tag version and Cargo.toml version are the same - shell: bash - run: | - if ! grep -q "version = \"${{ github.ref_name }}\"" Cargo.toml; then - echo "version does not match Cargo.toml" >&2 - exit 1 - fi - - name: Create the release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}