Update warp-go.yml

dependabot/github_actions/actions/checkout-3.1.0
fscarmen 4 years ago committed by GitHub
parent a9e3b08523
commit 26d5ab8d99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/warp-go.yml

@ -28,7 +28,7 @@ jobs:
LATEST3=$(echo $LATEST | cut -d \. -f3)
NOW_VERSION=$(( NOW1*1000000 + NOW2*1000 + NOW3 ))
LATEST_VERSION=$(( LATEST1*1000000 + LATEST2*1000 + LATEST3 ))
if [ $LATEST_VERSION -gt $NOW_VERSION ]; then
if [[ $LATEST_VERSION -gt $NOW_VERSION || ! -e ${GITHUB_WORKSPACE}/warp-go ]]; then
PLATFORM=( "linux_386"
"linux_amd64"
"linux_amd64v2"

Loading…
Cancel
Save