Skip to content

Commit 2c7c091

Browse files
committed
[ci skip] Updated docs
1 parent 54546d3 commit 2c7c091

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

‎.github/workflows/main.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# [ci skip] workaround from https://github.com/srz-zumix/ci-skip/blob/master/docs/github/WORKAROUND.md
2+
3+
14
name: Autodeploy to dev environment
25

36
on:
@@ -6,8 +9,15 @@ on:
69
- master
710

811
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+
918
deploy:
1019
runs-on: ubuntu-latest
20+
needs: prepare
1121

1222
steps:
1323
- uses: actions/checkout@v2

‎DEVELOPMENT.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ $ serverless deploy function --function generate-cloudcraft --stage dev
3636
$ serverless deploy function --function generate-cloudcraft --stage prod
3737
```
3838

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+
3945
## Spellchecker
4046

4147
```

0 commit comments

Comments
 (0)