Skip to content

0.5.5

0.5.5 #71

Workflow file for this run

name: NPM Publish
on:
release:
types: [created]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- 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 --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}