Skip to content

Version 1.012

Version 1.012 #15

Workflow file for this run

name: Node.js Package for webfont
on:
release:
types: [ created ]
push:
tags:
- 'npm/*'
defaults:
run:
working-directory: WEBFONT
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
- run: mv npm-package-readme.md README.md
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}