Skip to content

Update release-publish.yml to use NodeJS 18 #206

Update release-publish.yml to use NodeJS 18

Update release-publish.yml to use NodeJS 18 #206

Workflow file for this run

name: Build and push packages
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
uses: 'flowfuse/github-actions-workflows/.github/workflows/build_node_package.yml@v0.14.0'
with:
node: '[
{"version": "18", "tests": false, "lint": true},
]'
publish:
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: 'flowfuse/github-actions-workflows/.github/workflows/publish_node_package.yml@v0.1.0'
with:
package_name: driver-k8s
publish_package: true
secrets:
npm_registry_token: ${{ secrets.NPM_PUBLISH_TOKEN }}
dispatch_container_build:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Generate a token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.GH_BOT_APP_ID }}
private_key: ${{ secrets.GH_BOT_APP_KEY }}
- name: Trigger flowfuse container build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: flowforge-container.yml
repo: flowfuse/helm
ref: main
token: ${{ steps.generate_token.outputs.token }}