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.
2 parents 779cf9d + b4e4d43 commit 090bdc2Copy full SHA for 090bdc2
.github/workflows/docker.yml
@@ -25,6 +25,9 @@ jobs:
25
main:
26
runs-on: ubuntu-latest
27
steps:
28
+ - name: cleanup space
29
+ run: rm -rf /opt/hostedtoolcache
30
+
31
- name: Set up QEMU
32
uses: lightninglabs/gh-actions/[email protected]
33
@@ -62,8 +65,11 @@ jobs:
62
65
tags: "${{ env.DOCKER_ORG }}/${{ env.DOCKER_REPO }}:${{ env.IMAGE_TAG }}"
63
66
build-args: checkout=${{ env.RELEASE_VERSION }}
64
67
- - name: Clear the build cache
68
+ - name: Clear the Docker build cache
69
run: docker builder prune -a -f
70
71
+ - name: Clear the Docker image cache
72
+ run: docker image prune -a -f
73
74
- name: Build and push image with /lit path
75
id: docker_build2
0 commit comments