chore(main): release 53.1.0 (#924) #346
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
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: # Enable manual triggering | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write # Required for trusted publishing to npm | |
| name: release-please | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| config-file: release-please-config.json | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # The logic below handles the npm publication: | |
| - uses: actions/checkout@v4 | |
| # These if statements ensure that a publication only occurs when a new release is created: | |
| - uses: actions/setup-node@v4 | |
| if: ${{ steps.release.outputs.release_created }} | |
| with: | |
| node-version: "22.12.0" | |
| registry-url: "https://registry.npmjs.org" | |
| always-auth: true # Enable authentication for trusted publishing | |
| - name: Upgrade npm for trusted publishing | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: npm install -g npm@^11.5.1 | |
| - name: Install dependencies | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: npm ci | |
| - name: Compile | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: npx tsc | |
| - name: Publish to NPM | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: npm publish --provenance --access public |