attempt to skip cache restore step

pull/113/head
Ben Phelps 2 years ago committed by GitHub
parent 4e90bd8e46
commit aa77a274c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -54,13 +54,15 @@ jobs:
- name: Setup Docker buildx - name: Setup Docker buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
- name: Cache Docker layers # This step is being disabled because the runner is on a self-hosted machine
uses: actions/cache@v3 # where the cache will stick between runs.
with: # - name: Cache Docker layers
path: /tmp/.buildx-cache # uses: actions/cache@v3
key: ${{ runner.os }}-buildx-${{ github.sha }} # with:
restore-keys: | # path: /tmp/.buildx-cache
${{ runner.os }}-buildx- # key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-
# Login against a Docker registry except on PR # Login against a Docker registry except on PR
# https://github.com/docker/login-action # https://github.com/docker/login-action

Loading…
Cancel
Save