Skip to content

Merge branch 'test-workflow' of github.com:EdgePi-Cloud/node-red-edge… #35

Merge branch 'test-workflow' of github.com:EdgePi-Cloud/node-red-edge…

Merge branch 'test-workflow' of github.com:EdgePi-Cloud/node-red-edge… #35

Workflow file for this run

name: Publish Package to npm
on:
push:
branches:
- main
tags:
- release/*
jobs:
build:
runs-on: ubuntu-latest
steps:

Check failure on line 11 in .github/workflows/npm-publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/npm-publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish Package to npm
run: |
npm ci
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }
- name: Release Package
uses: ncipollo/release-action@v1.12.0