From 893a4da8ee9627b702d50f0b52e9befa3c41ea65 Mon Sep 17 00:00:00 2001 From: vran Date: Thu, 9 Jun 2022 17:42:19 +0800 Subject: [PATCH] feat: docker image support arm platform --- .github/workflows/auto-docker-latest.yml | 1 + .github/workflows/manual-release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/auto-docker-latest.yml b/.github/workflows/auto-docker-latest.yml index 7b9ac01..237b956 100644 --- a/.github/workflows/auto-docker-latest.yml +++ b/.github/workflows/auto-docker-latest.yml @@ -41,5 +41,6 @@ jobs: with: context: . file: ./local.Dockerfile + platforms: linux/amd64,linux/arm64 push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/databasir:latest \ No newline at end of file diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index c8e3023..3688fb1 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -50,5 +50,6 @@ jobs: with: context: . file: ./local.Dockerfile + platforms: linux/amd64,linux/arm64 push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/databasir:${{ github.event.inputs.tag }} \ No newline at end of file