myOS-builder #823
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: myOS-builder | |
on: | |
schedule: | |
- cron: "00 18 * * *" # build at 18:00 UTC every day | |
# 80 minutes after the last uBlue images start building | |
# 60 minutes after last wayblue images start building | |
push: | |
paths-ignore: # don't rebuild if only documentation has changed | |
- "**.md" | |
pull_request: | |
workflow_dispatch: # allow manually triggering builds | |
jobs: | |
bluebuild: | |
name: Build myOS | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
strategy: | |
fail-fast: false # stop GH from cancelling all matrix builds if one fails | |
matrix: | |
recipe: | |
- intel-amd/gnome.yml | |
- intel-amd/kde.yml | |
# - intel-amd/hyprland.yml | |
# - intel-amd/cosmic.yml | |
- nvidia/gnome.yml | |
- nvidia/kde.yml | |
# - nvidia/hyprland.yml | |
# - nvidia/cosmic.yml | |
- intel-mac/gnome.yml | |
- intel-mac/kde.yml | |
# - intel-mac/hyprland.yml | |
# - intel-mac/cosmic.yml | |
- surface/gnome.yml | |
- surface/kde.yml | |
# - server/headless.yml | |
steps: | |
# the build is fully handled by the reusable github action | |
- name: Build myOS | |
uses: blue-build/[email protected] | |
with: | |
recipe: ${{ matrix.recipe }} | |
cosign_private_key: ${{ secrets.SIGNING_SECRET }} | |
registry_token: ${{ github.token }} | |
pr_event_number: ${{ github.event.number }} | |
use_unstable_cli: false |