mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
fix: vpn connection to home
This commit is contained in:
parent
6337080ac0
commit
5079fdb97c
1 changed files with 16 additions and 3 deletions
19
.github/workflows/deploy.yml
vendored
19
.github/workflows/deploy.yml
vendored
|
|
@ -48,15 +48,28 @@ jobs:
|
||||||
tags: ${{ secrets.DOCKERHUB_USERNAME }}/werkzeugkiste-backend:latest
|
tags: ${{ secrets.DOCKERHUB_USERNAME }}/werkzeugkiste-backend:latest
|
||||||
|
|
||||||
deploy-on-server:
|
deploy-on-server:
|
||||||
|
needs: docker-build-push
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install OpenVPN
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y openvpn
|
||||||
|
|
||||||
|
- name: Connect to VPN
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.VPN_CONFIG }}" > config.ovpn
|
||||||
|
sudo openvpn --config config.ovpn --daemon
|
||||||
|
sleep 10
|
||||||
|
|
||||||
- name: Deploy on Server
|
- name: Deploy on Server
|
||||||
uses: appleboy/ssh-action@v1.0.0
|
uses: appleboy/ssh-action@v1.2.1
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.SSH_HOST }}
|
host: ${{ secrets.SSH_HOST }}
|
||||||
username: ${{ secrets.SSH_USERNAME }}
|
username: ${{ secrets.SSH_USERNAME }}
|
||||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
password: ${{ secrets.SSH_PASSWORD }}
|
||||||
|
port: ${{ secrets.PORT }}
|
||||||
script: |
|
script: |
|
||||||
cd /home/theo/docker/werkzeugkiste
|
cd "${{ secrets.HOMELAB_PATH }}"
|
||||||
docker compose up -d --pull always
|
docker compose up -d --pull always
|
||||||
Loading…
Add table
Add a link
Reference in a new issue