-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (39 loc) · 997 Bytes
/
Copy pathdevelop.yml
File metadata and controls
46 lines (39 loc) · 997 Bytes
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
name: Iaso develop branch
on:
push:
branches:
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: read
jobs:
config:
uses: BLSQ/iaso-ci/.github/workflows/config.yml@main
permissions:
pull-requests: write
contents: read
with:
branch: develop
pr_title: ${{ github.event.pull_request.title }}
build_and_push_image:
needs: config
uses: BLSQ/iaso-ci/.github/workflows/docker_build.yml@main
with:
iaso_branch: develop
image_tags: ${{ needs.config.outputs.image_tags }}
secrets: inherit
tests:
uses: BLSQ/iaso-ci/.github/workflows/tests.yml@main
with:
iaso_branch: develop
deploy_on_staging:
needs: [ build_and_push_image, tests ]
uses: BLSQ/iaso-ci/.github/workflows/docker_deploy.yml@main
with:
iaso_branch: develop
environment: staging
image_tag: develop
secrets: inherit