We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07fa3ec commit 058b8a9Copy full SHA for 058b8a9
1 file changed
.github/workflows/ci.installer.yml
@@ -160,3 +160,15 @@ jobs:
160
PATH: ${{ github.workspace }}/bin:/usr/bin:/bin
161
162
- run: pkgx node --eval 'console.log(1)'
163
+
164
+ upgrades:
165
+ runs-on: ubuntu-latest
166
+ steps:
167
+ - uses: actions/checkout@v4
168
+ - run:
169
+ curl https://dist.pkgx.dev/pkgx.sh/linux/x86-64/v1.0.0.tar.gz |
170
+ tar xz --strip-components=3
171
+ - run: mv pkgx /usr/local/bin
172
+ - run: test "$(pkgx --version)" = 'pkgx 1.0.0'
173
+ - run: ./installer.sh
174
+ - run: pkgx semverator gt $(pkgx --version | awk '{print $2}') 1.0.0
0 commit comments