-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 882 Bytes
/
ci.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
name: CI and releases
on:
pull_request:
push:
branches: [main]
jobs:
ci-module:
uses: relaycorp/shared-workflows/.github/workflows/tfmodule-ci.yml@main
with:
terraform_version: 1.5.3
ci-module-awala:
uses: relaycorp/shared-workflows/.github/workflows/tfmodule-ci.yml@main
with:
path: modules/awala
terraform_version: 1.5.3
ci-example:
uses: relaycorp/shared-workflows/.github/workflows/tfmodule-ci.yml@main
with:
path: examples/basic
terraform_version: 1.5.3
ci-example-awala:
uses: relaycorp/shared-workflows/.github/workflows/tfmodule-ci.yml@main
with:
path: examples/awala
terraform_version: 1.5.3
release:
needs:
- ci-module
- ci-module-awala
- ci-example
- ci-example-awala
uses: relaycorp/shared-workflows/.github/workflows/tfmodule-release.yml@main