Skip to content

Fan only mode support #7

Fan only mode support

Fan only mode support #7

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
build:
environment: deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}