diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 83aac2f..68e2e1f 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,4 +1,4 @@ -name: Build and Push Docker Image +name: Build and Push Github Package on: push: @@ -20,6 +20,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -35,5 +38,6 @@ jobs: with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: | ${{ env.GITHUB_REGISTRY }}/${{ env.GITHUB_IMAGE_NAME }}:latest \ No newline at end of file