Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
- cron:
"00 06 * * *" # build at 06:00 UTC every day
# (20 minutes after last ublue images start building)
push:
paths-ignore: # don't rebuild if only documentation has changed
- "**.md"
# push:
# paths-ignore: # don't rebuild if only documentation has changed
# - "**.md"

pull_request:
workflow_dispatch: # allow manually triggering builds
Expand Down
15 changes: 15 additions & 0 deletions recipes/recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ description: OS image for desktop.
base-image: ghcr.io/ublue-os/sericea-main
image-version: 41 # latest is also supported if you want new updates ASAP

stages:
- name: regreet
from: docker.io/library/rust
modules:
- type: script
snippets:
- apt-get update && apt-get install -y git libgtk-4-dev # Install git
- git clone https://github.com/rharish101/ReGreet.git
- cd ReGreet && cargo build --release
- mkdir -p /out/ && mv ReGreet/target/release /out/regreet

# module configuration, executed in order
# you can include multiple instances of the same module
modules:
Expand Down Expand Up @@ -40,6 +51,10 @@ modules:
remove:
- org.gnome.eog
user: {} # Also add Flathub user repo, but no user packages
- type: copy
from: regreet
src: /out/regreet
dest: /usr/bin/
- type: files
files:
- source: system/etc/greetd
Expand Down
Loading