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
15 changes: 14 additions & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@ jobs:
runs-on: ubuntu-latest

steps:

- name: Free disk space on runner
run: |
set -euxo pipefail
df -h
sudo rm -rf /usr/local/lib/android || true
sudo rm -rf /usr/share/dotnet || true
sudo rm -rf /opt/ghc || true
sudo rm -rf "${AGENT_TOOLSDIRECTORY:-/opt/hostedtoolcache}" || true
docker system prune -af || true
sudo apt-get clean
df -h

- name: Checkout repo
uses: actions/checkout@v4

Expand All @@ -35,4 +48,4 @@ jobs:

# Push both tags
docker push $IMAGE_BASE:$VERSION
docker push $IMAGE_BASE:latest
docker push $IMAGE_BASE:latest
Loading