@@ -9,10 +9,9 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
container:
|
container:
|
||||||
image: klakegg/hugo:ext-alpine # Wir bleiben bei Alpine
|
image: klakegg/hugo:ext-alpine
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Proxy-Einstellungen (WICHTIG!)
|
|
||||||
http_proxy: http://172.16.10.93:3128
|
http_proxy: http://172.16.10.93:3128
|
||||||
https_proxy: http://172.16.10.93:3128
|
https_proxy: http://172.16.10.93:3128
|
||||||
no_proxy: localhost,127.0.0.1,webserver.hahmann-trier.local
|
no_proxy: localhost,127.0.0.1,webserver.hahmann-trier.local
|
||||||
@@ -22,7 +21,6 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Tools installieren
|
- name: Tools installieren
|
||||||
# In Alpine nutzt man 'apk' statt 'apt-get'
|
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache rsync openssh-client
|
apk add --no-cache rsync openssh-client
|
||||||
|
|
||||||
@@ -31,15 +29,22 @@ jobs:
|
|||||||
|
|
||||||
- name: SSH vorbereiten
|
- name: SSH vorbereiten
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ~/.ssh
|
# Verzeichnis sicher erstellen
|
||||||
echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_ed25519
|
mkdir -p /root/.ssh
|
||||||
chmod 600 ~/.ssh/id_ed25519
|
chmod 700 /root/.ssh
|
||||||
# Bekannte Hosts hinzufügen
|
|
||||||
echo "${{ secrets.KNOWN_HOSTS }}" > ~/.ssh/known_hosts
|
# Key schreiben und sicherstellen, dass er mit einer neuen Zeile endet
|
||||||
|
echo "${{ secrets.DEPLOY_SSH_KEY }}" > /root/.ssh/id_ed25519
|
||||||
|
chmod 600 /root/.ssh/id_ed25519
|
||||||
|
|
||||||
|
# Known Hosts schreiben
|
||||||
|
echo "${{ secrets.KNOWN_HOSTS }}" > /root/.ssh/known_hosts
|
||||||
|
chmod 644 /root/.ssh/known_hosts
|
||||||
|
|
||||||
- name: Deploy via rsync
|
- name: Deploy via rsync
|
||||||
run: |
|
run: |
|
||||||
|
# Wir nutzen den absoluten Pfad zum Key /root/.ssh/id_ed25519
|
||||||
rsync -avz --delete \
|
rsync -avz --delete \
|
||||||
-e "ssh -o StrictHostKeyChecking=accept-new -i ~/.ssh/id_ed25519" \
|
-e "ssh -i /root/.ssh/id_ed25519 -o StrictHostKeyChecking=accept-new" \
|
||||||
public/ \
|
public/ \
|
||||||
gitea-runner@webserver.hahmann-trier.local:/var/www/www-deepwatersurvival-de
|
gitea-runner@webserver.hahmann-trier.local:/var/www/www-deepwatersurvival-de
|
||||||
Reference in New Issue
Block a user