Fix Release Action Test Syntax Error
All checks were successful
Run Tests on Code / run-tests (push) Successful in 37s
All checks were successful
Run Tests on Code / run-tests (push) Successful in 37s
This commit is contained in:
parent
9fd3970f58
commit
c71360c959
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ jobs:
|
|||
-
|
||||
name: Check if Version in Cargo.toml matches Tag
|
||||
run: |
|
||||
VERSION=(cat src-tauri/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d=)
|
||||
if test $VERSION != ' "${{ github.ref_name }}"'
|
||||
VERSION=$(cat src-tauri/Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d=)
|
||||
if test $VERSION != "${{ github.ref_name }}"
|
||||
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"
|
||||
end
|
||||
|
||||
|
|
Reference in a new issue