CI: fix maximum release file size again (NodeJS has problems with big files too, see https://github.com/nodejs/node/issues/38049, 1GiB seems safe)
This commit is contained in:
parent
5f01a681f7
commit
11ec455e1a
1 changed files with 1 additions and 1 deletions
2
.github/workflows/CI.yml
vendored
2
.github/workflows/CI.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
for iso in $(nix flake show --json | nix run nixpkgs#jq -- -r keys[]); do
|
for iso in $(nix flake show --json | nix run nixpkgs#jq -- -r keys[]); do
|
||||||
nix build .#$iso
|
nix build .#$iso
|
||||||
split -d result/iso/*.iso -b 2147483647 $iso.iso-part-
|
split -d result/iso/*.iso -b 1G $iso.iso-part-
|
||||||
rm result
|
rm result
|
||||||
done
|
done
|
||||||
- name: Release
|
- name: Release
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue