Skip to content

Publish

Publish #12

name: Publish
on:
workflow_run:
workflows: [Checks]
branches: [master]
types: [completed]
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: node
# 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:
if: ${{ steps.release.outputs.release_created }}
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: "pnpm"
if: ${{ steps.release.outputs.release_created }}
- run: pnpm install --frozen-lockfile
if: ${{ steps.release.outputs.release_created }}
- run: pnpm run lint && pnpm run test && pnpm run build && npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}