-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (42 loc) · 1.1 KB
/
build-git.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
37
38
39
40
41
42
43
44
45
name: "Build (git)"
on:
schedule:
- cron: "30 04 * * 0" # 04:30 UTC every Sunday
push:
paths:
- "files/**"
- "modules/**"
- "recipes/**"
- "cosign.pub"
- ".github/workflows/build-git*.yml"
branches-ignore:
- "dependabot**"
- "compiler"
pull_request:
workflow_dispatch:
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false
matrix:
recipe:
# - images/hyprland/41/hyprland--41-git.yml
- images/aurora/41/aurora--41-git.yml
- images/bluefin/41/bluefin--41-git.yml
- images/plasma/41/plasma--41-git.yml
- images/gnome/41/gnome--41-git.yml
steps:
- name: Build Custom Image
uses: blue-build/github-action@v1.8
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
rechunk: true