-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (44 loc) · 1.06 KB
/
release.yaml
File metadata and controls
51 lines (44 loc) · 1.06 KB
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: Release 📦
on:
push:
branches:
- 'release/**'
paths-ignore:
- README.md
- catalog-info.yaml
- 'docs/**'
env:
ENVIRONMENT: development
jobs:
env:
uses: devxp-tech/.github/.github/workflows/env.yaml@main
build-and-push:
uses: devxp-tech/.github/.github/workflows/build-and-push.yaml@main
with:
tag: ${{ needs.env.outputs.tag }}
needs:
- env
security-gateway:
uses: devxp-tech/.github/.github/workflows/trivy.yaml@main
with:
tag: ${{ needs.env.outputs.tag }}
needs:
- env
- build-and-push
deploy:
uses: devxp-tech/.github/.github/workflows/deploy.yaml@main
secrets: inherit
with:
tag: ${{ needs.env.outputs.tag }}
repository: ${{ needs.env.outputs.repository }}
url: https://${{ needs.env.outputs.repository }}.devxp-tech.io
environment: development
needs:
- env
- security-gateway
notify:
uses: devxp-tech/.github/.github/workflows/notify.yaml@main
if: always()
secrets: inherit
needs:
- deploy