Skip to content

0.5.7

0.5.7 #76

Workflow file for this run

name: NPM Publish
on:
release:
types: [created]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/[email protected]
with:
node-version: 18
registry-url: https://registry.npmjs.org/
scope: "@adaptivelink"
cache: 'pnpm'
- name: Publish
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}