Skip to content

build-quantix

build-quantix #167

Workflow file for this run

name: build-quantix
on:
schedule:
- cron: '30 17 * * 2,5' # 16:40 utc tues thurs
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.txt'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false
matrix:
recipe:
- recipe.yml
steps:
- name: Build Custom Image
uses: blue-build/github-action@v1.6
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
maximize_build_space: true