Skip to content

bluebuild

bluebuild #154

Workflow file for this run

name: bluebuild
on:
schedule:
- cron:
"05 06 * * *" # build at 06:05 UTC every day
# (25 minutes after last ublue images start building)
push:
paths-ignore:
- "**.md"
- "build-isos"
- "**/trivy.yml"
workflow_dispatch:
env:
REPO_OWNER: ${{ github.repository_owner }}
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
package:
- aubertit
- borealis
- buttgenbachit
- carbonatcyanotrichit
- flaviramea
steps:
- name: Build Custom Image
uses: blue-build/github-action@v1.6
with:
recipe: recipe-${{ matrix.package }}.yml
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
maximize_build_space: yes