Skip to content

Commit 9f0ac5a

Browse files
Merge pull request #8 from nathanielvarona/docs/advance-example-clarity
GitHub Actions Docs Advance Example Clarity
2 parents c4e8265 + e14b815 commit 9f0ac5a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To store Pritunl Profile to GitHub Secrets, maintaining the state of the `tar` b
4343
#### 1. Download the Pritunl Profile File provided by your Pritunl User Profile Page
4444

4545
```bash
46-
curl -s -L -o ./pritunl.profile.tar https://vpn.domain.tld/key/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.tar
46+
curl -s -L -o ./pritunl.profile.tar https://vpn.domain.tld/key/xxxxxxxxxxxxxx.tar
4747
```
4848

4949
#### 2. Convert your Pritunl Profile File from `tar` binary to `base64` data format.
@@ -128,7 +128,7 @@ Such as Secrets Key `PRITUNL_PROFILE_FILE` from the [Examples](#examples).
128128
with:
129129
profile-file-tar-base64: >
130130
${{ secrets.PRITUNL_PROFILE_FILE }}
131-
vpn-mode: 'wg'
131+
vpn-mode: 'wg' # Property set to install WireGuard tools dependencies.
132132
start-connection: false
133133

134134
- name: Start VPN Connection
@@ -144,15 +144,17 @@ Such as Secrets Key `PRITUNL_PROFILE_FILE` from the [Examples](#examples).
144144
145145
- name: Your CI/CD Core Logic Here
146146
run: |
147+
147148
##
148-
# EXAMPLE:
149+
# EXAMPLES:
149150
# * Integration Test
150151
# * End-to-End Test
152+
# * Endpoint Reachability Test
151153
# * And More
152154
##
153155
154156
##
155-
# Below is our simple connectivity test script.
157+
# Below is our simple example for VPN connectivity test.
156158
##
157159
158160
# Install Tooling

0 commit comments

Comments
 (0)