-
Notifications
You must be signed in to change notification settings - Fork 19
64 lines (54 loc) · 1.28 KB
/
release.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
on:
push:
branches:
- main
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
concurrency: release
permissions:
contents: read # Needed to clone the repo
id-token: write # Needed to sign images
packages: write # Needed to publish images to GHCR
jobs:
alpine-base:
uses: ./.github/workflows/.build.yaml
with:
image: alpine-base
registry: ghcr.io/wolfi-dev
gcc-musl:
uses: ./.github/workflows/.build.yaml
with:
image: gcc-musl
registry: ghcr.io/wolfi-dev
musl-dynamic:
uses: ./.github/workflows/.build.yaml
with:
image: musl-dynamic
registry: ghcr.io/wolfi-dev
sdk:
uses: ./.github/workflows/.build.yaml
with:
image: sdk
melange-config: configs/latest.melange.yaml
registry: ghcr.io/wolfi-dev
static-alpine:
uses: ./.github/workflows/.build.yaml
with:
image: static
registry: ghcr.io/wolfi-dev
git-alpine:
uses: ./.github/workflows/.build.yaml
with:
image: git
registry: ghcr.io/wolfi-dev
busybox-alpine:
uses: ./.github/workflows/.build.yaml
with:
image: busybox
registry: ghcr.io/wolfi-dev
spdx-tools:
uses: ./.github/workflows/.build.yaml
with:
image: spdx-tools
registry: ghcr.io/wolfi-dev