File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 2525 run : knope --help
2626 - name : Verify no artifacts in path
2727 run : git status
28+ install-monorepo-version :
29+ runs-on : ubuntu-latest
30+ steps :
31+ - name : Checkout
32+ uses : actions/checkout@v4
33+ - name : Install Knope
34+ uses : ./
35+ with :
36+ version : 0.16.2
37+ - name : Test Knope
38+ run : knope --help
39+ - name : Verify no artifacts in path
40+ run : git status
2841 pass-a-token :
2942 runs-on : ubuntu-latest
3043 steps :
Original file line number Diff line number Diff line change 1414 TAG=" ${VERSION} "
1515fi
1616
17+ # If the version is 0.16.2 or greater, the tag is prefixed with knope/
18+ if [[ ${TAG} == " v0.16.2" || ${TAG} > " v0.16.2" ]]; then
19+ TAG=" knope/${TAG} "
20+ fi
21+
1722# Use the GitHub CLI to download
1823
1924gh release download " ${TAG} " --repo " knope-dev/knope" --pattern " *linux*"
You can’t perform that action at this time.
0 commit comments