Skip to content

v2.20.0

v2.20.0 #47

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
with:
ref: ${{ github.sha }}
fetch-depth: false
- name: Setup Node ⚙️
uses: actions/setup-node@v3
with:
cache: yarn
node-version-file: ".nvmrc"
registry-url: https://registry.npmjs.org/
- name: Install dependencies 🚀
run: yarn install
- name: NPM Publish 🔖
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}