-
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (45 loc) · 1003 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
name: PR Builder
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build and Test
uses: ./.github/workflows/build.yml
secrets: inherit
with:
debug: false
run_tests: false
bump_version: false
name: rabbitmqcli
build_container:
name: Build Docker Container
uses: ./.github/workflows/build_container.yml
secrets: inherit
needs: build
with:
debug: false
enabled: false
name: rabbitmqcli
image_name: cjlapao/rabbitmqcli
publish_release:
name: Publish Release
uses: ./.github/workflows/publish_release.yml
secrets: inherit
needs: build
with:
name: rabbitmqcli
debug: false
enabled: false
publish_helm:
name: Publish Helm
uses: ./.github/workflows/publish_helm.yml
secrets: inherit
needs:
- publish_release
- build_container
with:
debug: false
enabled: false
name: rabbitmqcli
url: rabbitmqcli.carloslapao.com