generated from blue-build/template
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (36 loc) · 819 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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/[email protected]
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
maximize_build_space: true