-
Notifications
You must be signed in to change notification settings - Fork 6
167 lines (146 loc) · 4.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
---
name: Release
on:
push:
branches: [main]
jobs:
semrel:
permissions:
actions: none
checks: none
contents: none
deployments: none
issues: none
packages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
id-token: none
name: Semantic Release
runs-on: ubuntu-latest
outputs:
version: ${{ steps.semrel.outputs.version }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Semantic Release
uses: go-semantic-release/action@v1
id: semrel
with:
github-token: ${{ secrets.ADFINISBOT_PAT }}
allow-initial-development-versions: true
containers:
name: Release Containers
runs-on: ubuntu-latest
if: needs.semrel.outputs.version != ''
needs: semrel
strategy:
matrix:
config:
- name: backend
version-file: pyproject.toml
- name: frontend
version-file: package.json
permissions:
actions: none
checks: none
contents: none
deployments: none
issues: none
packages: write
pull-requests: none
repository-projects: none
security-events: write
statuses: none
id-token: write # needed for signing the images with GitHub OIDC using cosign
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Adjust Version
run: |
sed 's/"0.0.0"/"${{ needs.semrel.outputs.version }}"/g' -i ./${{ matrix.config.name }}/${{ matrix.config.version-file }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/${{ matrix.config.name }}
flavor: |
latest=auto
tags: |
type=semver,pattern={{version}},value=${{ needs.semrel.outputs.version }}
type=semver,pattern={{major}}.{{minor}},value=${{ needs.semrel.outputs.version }}
type=semver,pattern={{major}},value=${{ needs.semrel.outputs.version }}
labels: |
org.opencontainers.image.title=${{ matrix.config.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
- name: Build and Push ${{ matrix.config.name }} Docker Image
uses: docker/build-push-action@v5
id: docker
with:
context: ./${{ matrix.config.name }}/
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: |
${{ steps.meta.outputs.labels }}
- name: Sign ${{ matrix.config.name }} image and attach SBOM attestation
uses: adfinis/container-scanning-action@v0.2.9
with:
image-ref: ghcr.io/${{ github.repository }}/${{ matrix.config.name }}
token: ${{ secrets.GITHUB_TOKEN }}
digest: ${{ steps.docker.outputs.digest }}
attest: true
chart:
name: Release Helm Chart
runs-on: ubuntu-latest
if: needs.semrel.outputs.version != ''
needs:
- containers
- semrel
permissions:
actions: none
checks: none
contents: none
deployments: none
issues: none
packages: write
pull-requests: none
repository-projects: none
security-events: none
statuses: none
id-token: none
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Adjust Version
run: |
sed -r 's/"(0.0.0|latest)"/"${{ needs.semrel.outputs.version }}"/g' -i ./charts/timed/Chart.yaml
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.14.0
- name: Package Chart
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build charts/timed
helm package --destination=dist charts/timed
- name: Push Chart
run: helm push dist/*.tgz oci://ghcr.io/${{ github.repository }}/helm