Publish Test Version #2
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 custom tag | |
| on: | |
| # Allows triggering the workflow manually | |
| workflow_dispatch: | |
| inputs: | |
| provider_version: | |
| description: "Build and publish to NPM" | |
| required: false | |
| default: "v0.17.4-test.1" | |
| # We're going to interact with GH from the pipelines, so we need to get some permissions | |
| permissions: | |
| contents: read # for checkout | |
| jobs: | |
| release: | |
| name: Release the SDK to NPM and GitHub | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # to be able to publish a GitHub release | |
| issues: write # to be able to comment on released issues | |
| pull-requests: write # to be able to comment on released pull requests | |
| id-token: write # to enable use of OIDC for npm provenance | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| # Semantic release requires this as bare minimum | |
| node-version: 24 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | |
| run: npm audit signatures | |
| - name: Set version, build and publish to NPM, tag the release and push the changes | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: | | |
| set -x | |
| npm version ${{ github.event.inputs.version }} --no-git-tag-version | |
| npm run build | |
| npm publish | |
| git tag v${{ github.event.inputs.version }} | |
| git push | |
| git push --tags |