This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
chore: add blue-build branch to push trigger #327
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
# This workflow builds 'live' branch of the repository daily at 16:00 UTC (30 min delay after 'ublue-os/nvidia' builds) | |
name: blue-build | |
on: | |
schedule: | |
- cron: "00 16 * * *" | |
push: | |
branches: | |
- live | |
- blue-build | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
blue-build: | |
name: Build Custom Image | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
strategy: | |
fail-fast: false | |
matrix: | |
recipe: | |
- silverflow-nvidia-39.yml | |
steps: | |
- name: Build Custom Image | |
uses: blue-build/github-action@main | |
with: | |
recipe: ${{ matrix.recipe }} | |
cosign_private_key: ${{ secrets.SIGNING_SECRET }} | |
registry_token: ${{ github.token }} | |
pr_event_number: ${{ github.event.number }} |