mirror: A fast canonicalisation utility for stable object equality
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: stage the publish actually

Marais Rossouw (Jun 24, 2026, 4:24 PM +1000) 8b8a538f 0f75c6d5

+4 -4
+4 -4
.github/workflows/ci.yml
··· 37 37 deno-version: ${{ env.DENO_VERSION }} 38 38 - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 39 39 with: 40 - node-version: 20 40 + node-version: 26 41 41 registry-url: 'https://registry.npmjs.org' 42 42 43 43 - run: deno task build ··· 62 62 deno-version: ${{ env.DENO_VERSION }} 63 63 - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 64 64 with: 65 - node-version: 20 65 + node-version: 26 66 66 registry-url: 'https://registry.npmjs.org' 67 67 68 68 - run: deno task build ··· 73 73 74 74 - name: 'Publish → npm' 75 75 if: ${{ !contains(github.ref, '-next.') }} 76 - run: npm publish --provenance --access public 76 + run: npm stage publish --provenance --access public 77 77 working-directory: npm 78 78 79 79 - name: 'Publish → npm (pre-release)' 80 80 if: ${{ contains(github.ref, '-next.') }} 81 - run: npm publish --tag next --provenance --access public 81 + run: npm stage publish --tag next --provenance --access public 82 82 working-directory: npm