Skip to content

release: v4.4.17

release: v4.4.17 #19

Workflow file for this run

name: 馃殌 Publish Package
on:
push:
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
publish:
runs-on: ubuntu-latest
environment: Release
steps:
- name: 猡碉笍 Checkout
uses: actions/checkout@v3
- name: 馃帀 Install pnpm
uses: pnpm/action-setup@v2.2.4
- name: 馃帀 Set node version to 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- name: 馃毀 Install deps
run: pnpm install
- name: 馃摝 Build
run: pnpm run build
- name: 馃攢 Publish package
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}