-
Notifications
You must be signed in to change notification settings - Fork 13
51 lines (44 loc) · 978 Bytes
/
pr.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
46
47
48
49
50
51
name: Pull Request
on:
pull_request_target:
branches: ["main"]
permissions:
id-token: write
contents: read
checks: write
jobs:
build:
name: "Code"
uses: ./.github/workflows/build-code.yml
secrets: inherit
build-ui:
name: "UI"
uses: ./.github/workflows/build-ui.yml
secrets: inherit
image-service:
name: "Image / Service"
needs: build
uses: ./.github/workflows/build-image.yml
with:
image: sbomer-service
artifact: service
path: service/target/quarkus-app
secrets: inherit
image-generator:
name: "Image / Generator"
needs: build
uses: ./.github/workflows/build-image.yml
with:
image: sbomer-generator
artifact: cli
path: cli/target/quarkus-app
secrets: inherit
image-ui:
name: "Image / UI"
needs: build
uses: ./.github/workflows/build-image.yml
with:
image: sbomer-ui
artifact: ui
path: ui/dist
secrets: inherit