File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ # [ci skip] workaround from https://github.com/srz-zumix/ci-skip/blob/master/docs/github/WORKAROUND.md
2
+
3
+
1
4
name : Autodeploy to dev environment
2
5
3
6
on :
6
9
- master
7
10
8
11
jobs :
12
+ prepare :
13
+ runs-on : ubuntu-latest
14
+ if : " ! contains(github.event.head_commit.message, '[ci skip]')"
15
+ steps :
16
+ - run : echo "${{ github.event.head_commit.message }}"
17
+
9
18
deploy :
10
19
runs-on : ubuntu-latest
20
+ needs : prepare
11
21
12
22
steps :
13
23
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ $ serverless deploy function --function generate-cloudcraft --stage dev
36
36
$ serverless deploy function --function generate-cloudcraft --stage prod
37
37
```
38
38
39
+ ## Infrastructure
40
+
41
+ modules.tf can be self-hosted on your own infrastructure (if you want to expand it for some reason).
42
+
43
+ See [ modules.tf-infra] ( https://github.com/antonbabenko/modules.tf-infra ) repository for complete setup.
44
+
39
45
## Spellchecker
40
46
41
47
```
You can’t perform that action at this time.
0 commit comments