also looking at this
chore(deps): update all non-major dependencies
#29
2 files
+11
-39
Review threads live on the whole diff, not on one commit, so none are shown here - a thread's line means something in the branch's final form, and painting it into an intermediate step would put it on code it is not about.
| @@ -25,40 +25,15 @@ jobs: | ||
| 25 | 25 | node-version: '24.13.0' |
| 26 | 26 | registry-url: 'https://registry.npmjs.org' |
| 27 | 27 | |
| 28 | - name: Setup Zig | |
| 29 | run: | | |
| 30 | curl -L https://ziglang.org/builds/zig-x86_64-linux-0.16.0-dev.1859+212968c57.tar.xz -o zig.tar.xz | |
| 31 | tar -xf zig.tar.xz | |
| 32 | mv zig-x86_64-linux-0.16.0-dev.1859+212968c57 zig | |
| 33 | echo "$PWD/zig" >> $GITHUB_PATH | |
| 28 | - name: Setup Pantry | |
| 29 | uses: home-lang/pantry-setup@v1 | |
| 34 | 30 | |
| 35 | - name: Verify Zig | |
| 36 | run: zig version | |
| 37 | ||
| 38 | - name: Build pantry from source | |
| 39 | run: | | |
| 40 | git clone --depth 1 https://github.com/home-lang/pantry.git ../pantry | |
| 41 | cd ../pantry/packages/zig | |
| 42 | mkdir -p pantry | |
| 43 | cd pantry | |
| 44 | git clone --depth 1 https://github.com/zig-utils/zig-cli.git | |
| 45 | git clone --depth 1 https://github.com/zig-utils/zig-config.git | |
| 46 | git clone --depth 1 https://github.com/zig-utils/zig-test-framework.git | |
| 47 | ||
| 48 | - name: Compile pantry | |
| 49 | run: | | |
| 50 | cd ../pantry/packages/zig | |
| 51 | zig build | |
| 52 | echo "$PWD/zig-out/bin" >> $GITHUB_PATH | |
| 31 | - name: Create GitHub Release | |
| 32 | uses: stacksjs/action-releaser@v1.2.6 | |
| 33 | env: | |
| 34 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| 53 | 35 | |
| 54 | 36 | - name: Publish |
| 55 | run: pantry npm:publish --access public | |
| 37 | run: pantry npm:publish | |
| 56 | 38 | env: |
| 57 | 39 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 58 | ||
| 59 | - name: Create GitHub Release | |
| 60 | uses: softprops/action-gh-release@v2.5.0 | |
| 61 | with: | |
| 62 | generate_release_notes: true | |
| 63 | env: | |
| 64 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |