chore(security): sign npm release tarball with cosign keyless #44
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: Release Please | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| release-please: | |
| name: Release Please | |
| runs-on: ubuntu-latest | |
| # Job-level write grants only where actually needed: | |
| # contents: write -> release-please creates release commits and tags | |
| # pull-requests: write -> release-please opens and updates the release PR | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Run Release Please | |
| uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4 | |
| with: | |
| release-type: node |