Skip to content

Commit

Permalink
fix: adjust typo in version check
Browse files Browse the repository at this point in the history
  • Loading branch information
drbh committed Nov 25, 2023
1 parent bc7a7de commit 1f0c606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
git fetch origin main:Cargo.toml-main
# Extract version from both Cargo.toml files
VERSION_MAIN=$(grep "^version" Cargo.toml | cut -d '"' -f 2)
VERSION_MAIN=$(grep "^version" Cargo.toml-main | cut -d '"' -f 2)
VERSION_CURRENT=$(grep "^version" Cargo.toml | cut -d '"' -f 2)
if [ "$VERSION_CURRENT" != "$VERSION_MAIN" ]; then
Expand Down

0 comments on commit 1f0c606

Please sign in to comment.