Skip to content

v0.6.0

v0.6.0 #6

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Gnuxie <[email protected]>
#
# SPDX-License-Identifier: CC0-1.0
name: Node.js Package
on:
release:
types: [created]
jobs:
publish-gpr:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org
- run: rm -rf node_modules && yarn install --frozen-lockfile
- run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}