Skip to content

Commit

Permalink
Don't depend on outside action
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel committed Nov 13, 2024
1 parent 8d8e528 commit 01241f1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,15 @@ jobs:
- uses: actions/checkout@v3

# Some images are too large and we run out of disk space, so try to free some
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/[email protected]
with:
tool-cache: false
- name: Free disk space
run: |
# https://github.com/jlumbroso/free-disk-space
set -ex
sudo rm -rf /usr/local/lib/android || true
sudo rm -rf /usr/share/dotnet || true
sudo rm -rf /opt/ghc || true
sudo rm -rf /usr/local/.ghcup || true
sudo docker image prune --all --force || true
- name: Install prerequisites
run: |
Expand Down

0 comments on commit 01241f1

Please sign in to comment.