Migrating from semantic-release to release-please #16
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: | |
| - master | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| name: release-please | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| registry-url: 'https://registry.npmjs.org' | |
| if: ${{ steps.release.outputs.release_created }} | |
| # Upgrade NPM to latest version | |
| - run: sudo npm install -g npm | |
| - uses: google-github-actions/release-please-action@v3 | |
| id: release | |
| with: | |
| release-type: node | |
| package-name: "@workadventure/simple-peer" | |
| # The logic below handles the npm publication: | |
| - uses: actions/checkout@v2 | |
| # these if statements ensure that a publication only occurs when | |
| # a new release is created: | |
| if: ${{ steps.release.outputs.release_created }} | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 8.8.0 | |
| - run: pnpm install | |
| if: ${{ steps.release.outputs.release_created }} | |
| - run: pnpm run build | |
| if: ${{ steps.release.outputs.release_created }} | |
| - run: pnpm publish --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
| if: ${{ steps.release.outputs.release_created }} |