Skip to content

remove Expose GitHub Runtime #26

remove Expose GitHub Runtime

remove Expose GitHub Runtime #26

Workflow file for this run

name: my-ostree-build
on:
schedule:
- cron: "00 15 * * *"
push:
paths-ignore: # don't rebuild if only documentation has changed
- "**.md"
workflow_dispatch: # allow manually triggering builds
jobs:
my-ostree-build:
name: Build Custom Image
runs-on: ubuntu-latest
env:
BB_BUILDKIT_CACHE_GHA: true
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false # stop GH from cancelling all matrix builds if one fails
matrix:
recipe:
# !! Add your recipes here
- fedora-kinoite-laptop.yml
steps:
# the build is fully handled by the reusable github action
- name: Build Custom Image
uses: prydom/bluebuild-github-action@enable-docker-container-driver
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
use_unstable_cli: true