Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

👷 feat(docker): Add ARM 64 image to github action docker build push #292

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 3 additions & 2 deletions .github/workflows/docker-hub.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Publish Docker image

on:
pull_request: ~
release:
types: [published]

Expand Down Expand Up @@ -34,7 +35,7 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
# platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Loading