-
-
Notifications
You must be signed in to change notification settings - Fork 7
59 lines (49 loc) · 1.6 KB
/
build-isos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Build and Release ISO Images
on:
workflow_dispatch:
schedule:
- cron: "0 3 1,15 * *" # Run on the 1st and 15th of every month at 3:00 AM
jobs:
build-isos:
runs-on: ubuntu-latest
steps:
- name: Maximize Space
uses: easimon/maximize-build-space@v10
with:
overprovision-lvm: true
remove-android: true
remove-dotnet: true
remove-codeql: true
remove-haskell: true
remove-docker-images: true
- name: Checkout
uses: actions/checkout@v4
- name: Setup SSH Agent
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_GIT }}" >> ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
cat <<EOF > ~/.ssh/config
Host *
StrictHostKeyChecking no
EOF
- name: Install Lix
uses: DeterminateSystems/nix-installer-action@main
with:
source-url: https://install.lix.systems/lix/lix-installer-x86_64-linux
logger: pretty
diagnostic-endpoint: ""
- name: Nix Magic Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build Lilith Iso
continue-on-error: false
run: nix run nixpkgs#nix-fast-build -- --skip-cached --no-nom --flake .#images
- name: Upload Release Artifacts
run: |
release=$(date +"%Y-%m-%d")
gh release create "$release"
gh release upload "$release" ./result-lilith/iso/*.iso
env:
GH_TOKEN: ${{ github.token }}