Skip to content

Commit

Permalink
Include CONTRIBUTING.md into gh-pages publishing (#190)
Browse files Browse the repository at this point in the history
* Include CONTRIBUTING.md into gh-pages publishing

Inline minor doc fix

* Try to fix bad formatting in rendered gh-pages
  • Loading branch information
ytsarev committed Oct 29, 2020
1 parent 26d4d98 commit e8dbb32
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gh-pages.yaml
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
paths:
- 'README.md'
- '**.md'
- 'docs/**'

jobs:
Expand All @@ -19,6 +19,7 @@ jobs:
run: |
git checkout gh-pages
git checkout ${GITHUB_REF##*/} README.md
git checkout ${GITHUB_REF##*/} CONTRIBUTING.md
git checkout ${GITHUB_REF##*/} docs
- name: Push to gh-pages
uses: EndBug/add-and-commit@v5
Expand Down
9 changes: 9 additions & 0 deletions .spelling
Expand Up @@ -74,6 +74,10 @@ powergslb
f5
dtc
vSphere
AbsaOSS
LGTM
terratest
golang
- docs/index.md
1.2
1.3
Expand All @@ -86,3 +90,8 @@ vSphere
3.3
80
20
- CONTRIBUTING.md
kubernetes.slack.com
local.md
70
80
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -37,7 +37,7 @@ Thanks for contributing!

- [Debugging](#debugging)

## Debugging
### Debugging

Delve debugger needs to be installed first. Follow the [installation instructions](https://github.com/go-delve/delve/tree/master/Documentation/installation) for specific platforms from Delve's website.

Expand Down
8 changes: 4 additions & 4 deletions docs/deploy_infoblox.md
Expand Up @@ -273,16 +273,16 @@ dig +short podinfo.cloud.example.com
* And for the final end-to-end test, we can use `curl` to query the application
```sh
curl -s podinfo.example.com|grep message
"message": "\"eu\"",
"message": "eu",

curl -s podinfo.example.com|grep message
"message": "\"us\"",
"message": "us",

curl -s podinfo.example.com|grep message
"message": "\"us\"",
"message": "us",

curl -s podinfo.example.com||grep message
"message": "\"eu\"",
"message": "eu",
```

* As you can see specially marked `podinfo` returns different geo tags showing us the Global Round Robin strategy is working as expected
Expand Down

0 comments on commit e8dbb32

Please sign in to comment.