Skip to content

v0.0.32

v0.0.32 #22

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
# Allow manual
workflow_dispatch:
# use publish even so when goes from draft -> released
release:
types: [published]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
update-flow:
runs-on: ubuntu-latest
name: Node Red Flow Refresh
needs: publish-npm
steps:
- name: POST
uses: hacksore/node-red-flow@v2
with:
repo: 'node-red-contrib-bluelinky'