-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (43 loc) · 1.01 KB
/
toolbox.yaml
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
---
name: fedora-toolbox
on:
schedule:
- cron: 30 08 * * 1,3,5 # 01:30 PST mon,wed,fri
push:
branches:
- main
paths:
- toolbox/**.go
- toolbox/*/go.*
- toolbox/**/dagger.json
- .github/workflows/toolbox.yaml
- .github/workflows/reusable-toolbox.yaml
pull_request:
paths:
- toolbox/**.go
- toolbox/*/go.*
- toolbox/**/dagger.json
- .github/workflows/toolbox.yaml
- .github/workflows/reusable-toolbox.yaml
# yamllint disable-line rule:empty-values
workflow_dispatch:
jobs:
fedora_toolbox:
strategy:
fail-fast: false
matrix:
release:
- version: 41
latest: true
name: fedora-toolbox
uses: ./.github/workflows/reusable-toolbox.yaml
secrets: inherit
permissions:
contents: read
packages: write
id-token: write
with:
module: toolbox/fedora
image_name: fedora-toolbox
version: ${{ matrix.release.version }}
latest: ${{ matrix.release.latest }}