Skip to content

Commit

Permalink
chore: github release action was using incorect docker cache (argopro…
Browse files Browse the repository at this point in the history
…j#1387)

Signed-off-by: Jesse Suen <[email protected]>
  • Loading branch information
jessesuen authored Aug 2, 2021
1 parent ff3569d commit 2600c6a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
with:
ref: ${{ github.event.inputs.tag }}

- name: Get SHA
id: get-sha
run: echo "::set-output name=sha::$(git log -1 --format='%H')"

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

Expand All @@ -27,9 +31,7 @@ jobs:
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
key: ${{ runner.os }}-buildx-${{ steps.get-sha.outputs.sha }}

- name: Print Disk Usage
run: |
Expand Down

0 comments on commit 2600c6a

Please sign in to comment.