Skip to content

Commit

Permalink
Update build-container.yml to set up QEMU and Docker Buildx
Browse files Browse the repository at this point in the history
  • Loading branch information
wuast94 committed Apr 26, 2024
1 parent c746467 commit 4bfd5f4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand All @@ -31,4 +36,5 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/${{ github.repository }}/nodered-ffmpeg:3.1.9
tags: ghcr.io/${{ github.repository }}/nodered-ffmpeg:3.1.9
platforms: linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64

0 comments on commit 4bfd5f4

Please sign in to comment.