Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

release.yaml 511B

1234567891011121314151617181920212223
  1. name: Release
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. release:
  8. name: Release
  9. runs-on: ubuntu-18.04
  10. steps:
  11. - name: Checkout
  12. uses: actions/checkout@v1
  13. - name: Setup Node.js
  14. uses: actions/setup-node@v1
  15. with:
  16. node-version: 16
  17. - name: Install dependencies
  18. run: npm ci
  19. - name: Release
  20. env:
  21. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  22. NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
  23. run: npx semantic-release