File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1414 strategy :
1515 fail-fast : false
1616 matrix :
17- os : [ubuntu-latest, windows-latest, macos-latest]
17+ os :
18+ - ubuntu-latest
19+ # - windows-latest # disabled for now due to curl error (probably this regression: https://github.com/curl/curl/issues/13958)
20+ - macos-latest]
1821 runs-on : ${{ matrix.os }}
1922 steps :
2023 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -114,6 +114,10 @@ checkLatestVersion() {
114114 if [[ " $DEBUG " == " true" ]]; then
115115 echo " Resolved latest tag: <$TAG >" >&2
116116 fi
117+ if [[ " $TAG " == " latest" ]]; then
118+ echo " Failed to get the latest version for $REPO_URL "
119+ exit 1
120+ fi
117121}
118122
119123# downloadFile downloads the latest binary package and also the checksum
You can’t perform that action at this time.
0 commit comments