Skip to content

Commit

Permalink
GLORY
Browse files Browse the repository at this point in the history
  • Loading branch information
oomfiee committed Aug 30, 2024
1 parent ff68360 commit 3d91139
Show file tree
Hide file tree
Showing 91 changed files with 3,955 additions and 1 deletion.
70 changes: 70 additions & 0 deletions .github/banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .github/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
99 changes: 99 additions & 0 deletions .github/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions .github/workflows/build_iso.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Build ISO"
on:
workflow_dispatch:
workflow_call:
schedule:
- cron: "30 17 * * *" # build at 17:00 UTC every day
# (20 minutes after last ublue images start building)
push:
paths-ignore: # don't rebuild if only documentation has changed
- "**.md"

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}-iso
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: install nix
uses: DeterminateSystems/nix-installer-action@main
#with:
#github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix build .#nixosConfigurations.iso.config.system.build.isoImage
- name: Upload ISO as artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: ISO
path: |
./result/iso/*.iso
if-no-files-found: error
retention-days: 0
compression-level: 0
Loading

0 comments on commit 3d91139

Please sign in to comment.