Skip to content

Release 1.7.0 (#557) #59

Release 1.7.0 (#557)

Release 1.7.0 (#557) #59

Workflow file for this run

name: Release publish
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
npm ci
npm run build
npm run test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
always-auth: true
- name: Extract PACKAGE_VERSION
id: package-version
uses: martinbeentjes/npm-get-version-action@master
- name: Publish
if: contains(steps.package-version.outputs.current-version, 'dev') != true
run: |
npm ci
npm run build
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_TKN}}
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
scope: '@nrchkb'
- name: Extract PACKAGE_VERSION
id: package-version
uses: martinbeentjes/npm-get-version-action@master
- name: Publish
if: contains(steps.package-version.outputs.current-version, 'dev') != true
run: |
npm ci
npm run build
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GHUB_TKN}}
- name: Update Node-Red flow-library
if: contains(steps.package-version.outputs.current-version, 'dev') != true
uses: Zehir/[email protected]
continue-on-error: true
with:
package-name: 'node-red-contrib-homekit-bridged'