diff options
author | 2020-11-17 17:34:12 +0100 | |
---|---|---|
committer | 2020-11-17 17:34:12 +0100 | |
commit | 4b028a9f6ada3411c19f1cee8e12d06998439fec (patch) | |
tree | fae03ffdccaca2430ccb5ef14359c7a44fb5b128 | |
parent | Add image tag arg to final dockerfile (diff) |
Fix incorrectly specified cache-from argument
-rw-r--r-- | .github/workflows/lint-test.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 355755e..fb68d5c 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -120,7 +120,7 @@ jobs: push: true cache-from: | type=local,src=/tmp/.base-buildx-cache - type=local,dest=/tmp/.final-buildx-cache + type=local,src=/tmp/.final-buildx-cache ghcr.io/python-discord/snekbox:latest cache-to: type=local,dest=/tmp/.final-buildx-cache, tags: ghcr.io/python-discord/snekbox:latest |