Remove the version mismatch check from the release action

This commit is contained in:
Marcin Kulik
2024-04-19 16:28:04 +02:00
parent 7068f5aba5
commit 2da5b10088

View File

@@ -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 }}