Skip to content

Enable provenance and add GitHub workflow to publish pkg #4

Enable provenance and add GitHub workflow to publish pkg

Enable provenance and add GitHub workflow to publish pkg #4

Workflow file for this run

name: Version 🔖
#on:
# release:
# types: [created]
on:
pull_request:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
version:
name: Release
runs-on: ubuntu-latest
environment: release
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm@^9.5.0
- run: npm ci
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}