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 59eb514 commit 1dc4124Copy full SHA for 1dc4124
.github/workflows/workflow.yml
@@ -72,14 +72,23 @@ jobs:
72
- name: Install package
73
run: flit install
74
75
+ - name: Cache Buildx
76
+ id: cache-buildx
77
+ uses: actions/cache@v2
78
+ with:
79
+ path: ~/.docker/cli-plugins/docker-buildx
80
+ key: buildx
81
+
82
- name: Clone buildx
83
uses: actions/checkout@master
84
+ if: steps.cache-buildx.outputs.cache-hit != 'true'
85
with:
86
repository: docker/buildx
87
path: buildx
88
ref: fd6de6b6aeac780c59e5079a96b068076b676d73
89
90
- name: Install buildx
91
92
working-directory: ./buildx
93
run: make install
94
0 commit comments