Skip to content

Commit

Permalink
Modified github action to build rpi images
Browse files Browse the repository at this point in the history
  • Loading branch information
hyper-prog committed Nov 21, 2024
1 parent 07ca37c commit 4ce6b72
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,25 @@ jobs:
tags: |
type=raw,value=latest
labels: |
org.opencontainers.image.title=Hasses Daemon
org.opencontainers.image.description=Multi-platform support for Raspberry Pi and PC
org.opencontainers.image.vendor=HyperProg
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: .
file: Docker/Dockerfile
push: true
platforms: |
linux/amd64,
linux/arm/v6,
linux/arm/v7,
linux/arm64/v8
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 4ce6b72

Please sign in to comment.