|
@@ -40,6 +40,14 @@ jobs:
|
|
|
type=schedule,prefix=nightly-,pattern={{date 'YYYYMMDD'}}
|
|
type=schedule,prefix=nightly-,pattern={{date 'YYYYMMDD'}}
|
|
|
type=raw,enable=${{ github.event_name == 'workflow_dispatch' }},value=workflow_dispatch-{{branch}}-{{sha}}
|
|
type=raw,enable=${{ github.event_name == 'workflow_dispatch' }},value=workflow_dispatch-{{branch}}-{{sha}}
|
|
|
|
|
|
|
|
|
|
+ - name: Set up QEMU
|
|
|
|
|
+ uses: docker/setup-qemu-action@v3
|
|
|
|
|
+ with:
|
|
|
|
|
+ platforms: arm64
|
|
|
|
|
+
|
|
|
|
|
+ - name: Set up Docker Buildx
|
|
|
|
|
+ uses: docker/setup-buildx-action@v3
|
|
|
|
|
+
|
|
|
- name: Build and push Docker image
|
|
- name: Build and push Docker image
|
|
|
uses: docker/build-push-action@v6
|
|
uses: docker/build-push-action@v6
|
|
|
with:
|
|
with:
|
|
@@ -47,3 +55,4 @@ jobs:
|
|
|
push: true
|
|
push: true
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
|
+ platforms: linux/amd64,linux/arm64
|