Skip to content

publish

publish #9

Workflow file for this run

name: publish
on:
workflow_dispatch:
inputs:
dry-run:
type: boolean
default: true
release:
types:
- published
jobs:
main:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
registry-url: 'https://registry.npmjs.org'
- run: pnpm whoami && echo 'npm credentials are valid' || (echo 'npm credentials are invalid or have expired.' && exit 1)
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
- run: pnpm i
- run: pnpm exec nx report
- run: pnpm exec nx release publish --dry-run=${{ env.DRY_RUN }}
env:
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry-run && github.ref_type == 'tag' }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
NPM_CONFIG_PROVENANCE: true