Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

[Hotfix] Fix build issue. #57

[Hotfix] Fix build issue.

[Hotfix] Fix build issue. #57

Workflow file for this run

name: Publish NPM Package
on:
release:
types: [created]
jobs:
publish:
environment: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run compile
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}