Disable docker cache with github actions

The container in this repository does not take long to build and the
caches look like they're take a nontrivial amount of space in CI. Try to
free up more room for LLVM caches which are the main reason to use
caching in this repository.
pull/463/head
Alex Crichton 1 year ago
parent 0de1b487fc
commit 9d7fae47ca

@ -242,8 +242,6 @@ jobs:
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Publish a draft release - name: Publish a draft release
if: startsWith(github.ref, 'refs/tags') if: startsWith(github.ref, 'refs/tags')

Loading…
Cancel
Save