Skip to content

Commit 25aa06c

Browse files
authored
Fix No space left on device error while ghcr-upload job in GitHub Action (#142)
1 parent 36d5241 commit 25aa06c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/wait-and-upload.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
contents: read
7373
packages: write
7474
steps:
75+
- name: Free Disk Space (Ubuntu)
76+
uses: jlumbroso/free-disk-space@main
77+
7578
- name: Install Nix with good defaults
7679
uses: cachix/install-nix-action@v20
7780
with:
@@ -119,11 +122,6 @@ jobs:
119122
# and the GHC version (currently `ghc810` and `ghc96`).
120123
if: ${{ contains(fromJSON('["x86_64-linux", "aarch64-linux"]'), inputs.platform) && contains(fromJson('["","-windows","-js"]'), inputs.target-platform) && contains(fromJson('["ghc810","ghc96"]'), inputs.compiler-nix-name) && !inputs.minimal }}
121124
steps:
122-
- name: Free Disk Space (Ubuntu)
123-
uses: jlumbroso/free-disk-space@main
124-
with:
125-
docker-images: false
126-
127125
- name: Checkout repository
128126
uses: actions/checkout@v3
129127

0 commit comments

Comments
 (0)