Skip to content

Publish

Publish #97

Workflow file for this run

name: Publish to NPM
on:
workflow_dispatch:
jobs:
run:
name: Publish
env:
NODE_VERSION: '19'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: master
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install
uses: ./.github/actions/install
- name: Publish
uses: ./.github/actions/publish
with:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Commit changes
uses: ./.github/actions/commit
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}