Skip to content

Commit

Permalink
ci: Add Node-RED 4.0 public container build job into existing workflow (
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed Mar 15, 2024
2 parents 6698dd6 + 0e508b5 commit 4d1a24a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,42 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
push: true

build_nodered_container_40:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: 'flowfuse/helm'
path: 'helm'
- name: Docker Meta Data
id: meta
uses: docker/metadata-action@v4
with:
tags: |
type=raw,enable=true,priority=200,prefix=,suffix=-4.0.x,value=${{ github.event.inputs.version }}
flavor: |
latest=false
images: |
flowforge/node-red
flowfuse/node-red
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
- name: docker login
uses: docker/login-action@v3
with:
username: flowforge
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push FlowForge Application container
uses: docker/build-push-action@v3.2.0
with:
context: helm/node-red-container
file: helm/node-red-container/Dockerfile-4.0
platforms: linux/amd64, linux/arm64, linux/arm/v7
tags: ${{ steps.meta.outputs.tags }}
push: true

build_file_server_container:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 4d1a24a

Please sign in to comment.