We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 110ba29 commit 4d4a5a5Copy full SHA for 4d4a5a5
.github/workflows/build-container.yml
@@ -32,6 +32,12 @@ jobs:
32
- name: checkout compute-entrypoint
33
uses: actions/checkout@v2
34
35
+ - name: Cache base image
36
+ uses: actions/cache@v2
37
+ with:
38
+ path: /tmp/.buildx-cache
39
+ key: base-${{ matrix.repo }}-buildx-${{ github.sha }}
40
+
41
- id: generate-tag-list
42
env:
43
REPO: ${{ matrix.repo }}
@@ -55,6 +61,7 @@ jobs:
55
61
with:
56
62
build-args: BASE_YUM_REPO=${{ matrix.repo }}
57
63
tags: "${{ steps.generate-tag-list.outputs.taglist }}"
64
+ cache-to: type=local,dest=/tmp/.buildx-cache
58
65
59
66
dispatch:
60
67
runs-on: ubuntu-latest
0 commit comments