Skip to content

Commit 0bc6f67

Browse files
author
Vic Shóstak
authored
Merge pull request #17 from create-go-app/dev
Add short screen cast preview to README
2 parents 4d0ffb1 + 8b2304a commit 0bc6f67

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/testing_build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ on:
66
paths:
77
- "configs/**"
88
- "**.go"
9+
paths-ignore:
10+
- ".github/**"
11+
- "**.md"
912
pull_request:
1013
branches: [master]
1114
paths:
1215
- "configs/**"
1316
- "**.go"
17+
paths-ignore:
18+
- ".github/**"
19+
- "**.md"
1420

1521
jobs:
1622
build:

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ CLI command for generate a default `.cgapp.yml` config file in current folder:
8686
cgapp init
8787
```
8888

89+
📺 Preview: https://recordit.co/yvlnIu8Lyp
90+
8991
<details>
9092
<summary>Generated config file</summary>
9193

@@ -187,6 +189,8 @@ Run `create` command **without** any arguments:
187189
cgapp create
188190
```
189191

192+
📺 Preview: https://recordit.co/LTxFQloedn
193+
190194
#### Create from the config file
191195

192196
Run `create` command **with** `--use-config` (or `-c`) argument:
@@ -214,6 +218,8 @@ Run `deploy` command **without** any arguments:
214218
cgapp deploy
215219
```
216220

221+
📺 Preview: https://recordit.co/ewjG9dgMPX
222+
217223
#### Deploy from the config file
218224

219225
Run `deploy` command **with** `--use-config` (or `-c`) argument:

pkg/registry/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ var (
189189
{
190190
Name: "roles",
191191
Prompt: &survey.Confirm{
192-
Message: "Do you want to install Ansible roles for deploy your project?",
192+
Message: "Do you want to create Ansible playbook for deploy your project?",
193193
Default: true,
194194
},
195195
},

0 commit comments

Comments
 (0)