You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: until ping -c 1 -W 5 172.16.0.61; do sleep 2; done
26
+
27
+
- name: Upload VPN logs
28
+
if: always()
29
+
uses: actions/upload-artifact@v2
30
+
with:
31
+
name: vpn-logs
32
+
path: openvpn.log
22
33
```
23
34
24
35
Make sure to store your sensitive information (such as the config, certificate, and certificate_name) as secrets in your GitHub repository to keep them secure.
@@ -36,4 +47,6 @@ Replace `<file_name>` with the name of the file you want to encode. The encoded
36
47
37
48
Remember to replace `<file_name>` with the actual name of the file you want to encode.
38
49
50
+
The optional `Upload VPN logs` step allows you to see logs from the OpenVPN process and debug where needed.
51
+
39
52
For more information on how to use this action, please refer to the [GitHub Action documentation](https://docs.github.com/actions).
0 commit comments