Skip to content

Commit

Permalink
doc: correct syntax of go and ansible example workflows (#891)
Browse files Browse the repository at this point in the history
fixes #890 

[skip ci]
  • Loading branch information
edeediong committed Jul 22, 2020
1 parent 511521d commit c8553d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/cd/ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ steps:
env:
ANSIBLE_LOG_PATH: ./ansible.log
ANSIBLE_SSH_CONTROL_PATH: /dev/shm/cp%%h-%%p-%%r
ANSIBLE_HOST_KEY_CHECKING: false
ANSIBLE_HOST_KEY_CHECKING: "false"
secrets:
- ANSIBLE_SSH_KEY_DATA
4 changes: 2 additions & 2 deletions examples/ci/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ steps:
uses: docker://golang:1.14.4-alpine3.11
args: [go, get, -v, -t, -d, ./...]

- name: build
- id: build
uses: docker://golang:1.14.4-alpine3.11
args: [go, build, -v, .]

- name: test
- id: test
uses: docker://golang:1.14.4-alpine3.11
args: [go, test, -v, .]

0 comments on commit c8553d0

Please sign in to comment.