Build and Release ISO Images #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 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: "" | |
extra-conf: | | |
substituters = https://nix-community.cachix.org https://isabelroses.cachix.org https://catppuccin.cachix.org https://cache.nixos.org/ | |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= isabelroses.cachix.org-1:mXdV/CMcPDaiTmkQ7/4+MzChpOe6Cb97njKmBQQmLPM= catppuccin.cachix.org-1:noG/4HkbhJb+lUAdKrph6LaozJvAeEEZj4N732IysmU= | |
- name: Build Lilith Iso | |
continue-on-error: false | |
run: nix build -L .#nixosConfigurations.lilith.config.system.build.isoImage | |
- name: Upload Release Artifacts | |
run: | | |
release=$(date +"%Y-%m-%d") | |
gh release create "$release" | |
gh release upload "$release" ./result/iso/*.iso | |
env: | |
GH_TOKEN: ${{ github.token }} |