fix: Update CSpell version (9.3.2) (#726) #549
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: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_created: ${{ steps.release.outputs.release_created }} | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| # cspell:ignore noreply googleapis | |
| publish: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - release-please | |
| if: ${{ needs.release-please.outputs.release_created }} | |
| steps: | |
| # The logic below handles the npm publication: | |
| - uses: actions/checkout@v5 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - run: npm publish | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.PUBLISH_NPM}} | |
| publish-docker: | |
| permissions: | |
| contents: write | |
| packages: write | |
| needs: | |
| - release-please | |
| uses: ./.github/workflows/publish-docker-image.yml | |
| if: ${{ needs.release-please.outputs.release_created }} |