Skip to content

0.0.4 Newer core and static package #5

0.0.4 Newer core and static package

0.0.4 Newer core and static package #5

Workflow file for this run

name: Test
on:
release:
types: [created]
jobs:
deploy:
name: Deploy on npm
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 25
registry-url: https://registry.npmjs.org
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}