We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cf7dd3 commit 1d3ef31Copy full SHA for 1d3ef31
.github/workflows/build.yaml
@@ -52,9 +52,18 @@ jobs:
52
uses: docker/setup-qemu-action@v3
53
- name: Set up Docker Buildx
54
uses: docker/setup-buildx-action@v3
55
+ - name: Cache Docker layers
56
+ uses: actions/cache@v4
57
+ with:
58
+ path: /tmp/.buildx-cache
59
+ key: ${{ runner.os }}-buildx-${{ github.sha }}
60
+ restore-keys: |
61
+ ${{ runner.os }}-buildx-
62
- name: Build
63
uses: docker/build-push-action@v6
64
with:
65
context: .
66
platforms: linux/amd64,linux/arm64
67
tags: ${{ github.repository_owner }}/squonk2-fastapi-ws-event-stream:${{ env.GITHUB_REF_SLUG }}
68
+ cache-from: type=local,src=/tmp/.buildx-cache
69
+ cache-to: type=local,dest=/tmp/.buildx-cache
0 commit comments