We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dcae63 commit d9ca32dCopy full SHA for d9ca32d
1 file changed
.github/workflows/build.yml
@@ -45,6 +45,11 @@ jobs:
45
runs-on: ubuntu-latest
46
needs: [build_app]
47
steps:
48
+ - name: Set up QEMU
49
+ uses: docker/setup-qemu-action@v3
50
+ - name: Set up Docker Buildx
51
+ uses: docker/setup-buildx-action@v3
52
+
53
- name: Checkout
54
uses: actions/checkout@v6
55
@@ -62,11 +67,13 @@ jobs:
62
67
password: ${{ secrets.GITHUB_TOKEN }}
63
68
64
69
- name: Build and (optionally) push image
65
- uses: docker/build-push-action@v5
70
+ uses: docker/build-push-action@v6
66
71
with:
72
context: .
73
file: dist.Dockerfile
74
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
75
tags: |
76
ghcr.io/${{ github.repository }}:${{ github.ref_name }}
77
+ cache-from: type=gha
78
+ cache-to: type=gha
79
platforms: linux/amd64,linux/arm64
0 commit comments