Skip to content

Commit

Permalink
change format for if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilKWarmdahl committed Dec 13, 2024
1 parent 64a5f6d commit 6c65d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
TARGET_NET=${TAG##desktop-wallet/*-}
echo "$TARGET_NET"
if [ $TARGET_NET != "stagenet" ] || [ $TARGET_NET != "testnet" ] || [ $TARGET_NET =! "mainnet" ]; then
if [ $TARGET_NET != "stagenet" || "testnet" || "mainnet" ]; then
echo "::error:: Tag does not contain target net"
exit 1
fi
Expand Down

0 comments on commit 6c65d2a

Please sign in to comment.