Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- name: cleanup space
run: rm -rf /opt/hostedtoolcache

- name: Set up QEMU
uses: lightninglabs/gh-actions/[email protected]

Expand Down Expand Up @@ -62,8 +65,11 @@ jobs:
tags: "${{ env.DOCKER_ORG }}/${{ env.DOCKER_REPO }}:${{ env.IMAGE_TAG }}"
build-args: checkout=${{ env.RELEASE_VERSION }}

- name: Clear the build cache
- name: Clear the Docker build cache
run: docker builder prune -a -f

- name: Clear the Docker image cache
run: docker image prune -a -f

- name: Build and push image with /lit path
id: docker_build2
Expand Down
Loading