Skip to content

Commit

Permalink
fix syntax error comparing versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterOdin committed Nov 20, 2023
1 parent c7116e3 commit d7177c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: properties
run: |
version=${{ inputs.version }}
if (( $(echo "${VERSION} > 0.281" | bc -l) )); then
if (( $(echo "${version} > 0.281" | bc -l) )); then
platform="linux/amd64,linux/arm64"
else
platform="linux/amd64"
Expand Down

0 comments on commit d7177c8

Please sign in to comment.