Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add Node-RED 4.0 public container build job into existing workflow #352

Merged
merged 1 commit into from
Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected]
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
Loading