v0.68.0 #150
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish NPM Package | |
| on: | |
| release: | |
| types: [created] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| permissions: | |
| contents: read | |
| id-token: write # Required for npm provenance/OIDC | |
| jobs: | |
| publish-npm: | |
| uses: zondax/_workflows/.github/workflows/_publish-npm.yaml@v6 | |
| permissions: | |
| contents: read | |
| id-token: write # Required for OIDC trusted publishing - must be in caller! | |
| with: | |
| timeout_minutes: 15 | |
| dry_run: false | |
| github_app_auth: false | |
| # The shared workflow installs npm@latest, which needs Node 24 (npm 12 fails on Node 22 with EBADENGINE) | |
| node_version: "24" | |