Skip to content

v1.1.1

v1.1.1 #7

Workflow file for this run

---
name: "publish"
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Set up Node"
uses: actions/setup-node@v4
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: "Install dependencies and build"
run: npm ci && npm run build
- name: "Publish package on NPM"
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}