-
Notifications
You must be signed in to change notification settings - Fork 49
50 lines (46 loc) · 1.35 KB
/
busola-kyma-build.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
name: Busola Kyma Web Build
on:
push:
branches:
- main
paths:
- ".github/workflows/busola-kyma-build.yml"
- "kyma/**"
- "public/**"
- "src/**"
- "package.json"
- "Makefile"
- "Dockerfile.kyma"
- "Dockerfile.local.kyma"
pull_request_target:
types: [opened, edited, synchronize, reopened, ready_for_review]
paths:
- ".github/workflows/busola-kyma-build.yml"
- "kyma/**"
- "public/**"
- "src/**"
- "kyma/**"
- "package.json"
- "Makefile"
- "Dockerfile.kyma"
- "Dockerfile.local.kyma"
permissions:
id-token: write # This is required for requesting the JWT token
contents: read # This is required for actions/checkout
jobs:
build-kyma-web-image:
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: busola-kyma-web
dockerfile: Dockerfile.kyma
context: .
export-tags: true
tags: latest
build-kyma-web-local-image:
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: busola-kyma-web-local
dockerfile: Dockerfile.local.kyma
context: .
export-tags: true
tags: latest