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 d90f317 commit 534afa3Copy full SHA for 534afa3
.github/workflows/build-project.yml
@@ -19,6 +19,17 @@ jobs:
19
- name: Checkout
20
uses: actions/checkout@v2
21
22
+ - name: Set up Docker Buildx
23
+ id: buildx
24
+ if: ${{ github.event_name == 'pull_request' }}
25
+ uses: docker/setup-buildx-action@v1
26
+ - name: Cache Docker Register
27
28
+ uses: actions/cache@v2
29
+ with:
30
+ path: /tmp/.buildx-cache
31
+ key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
32
+
33
- name: Use Node.js 14.x
34
uses: actions/setup-node@v1
35
with:
0 commit comments