revert 42e3c65881
Deploy static site / deploy (push) Successful in 25s

revert Try to fix signature mismatch
This commit is contained in:
2026-04-23 11:42:03 +02:00
parent 42e3c65881
commit 5a1aad6aae
+2 -3
View File
@@ -28,9 +28,8 @@ jobs:
ssh -i ~/.ssh/id_ed25519 \
-p ${{ secrets.DEPLOY_PORT }} \
-o StrictHostKeyChecking=yes \
-o UpdateHostKeys=no \
${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} \
"echo SSH OK"
"echo SSH connection successful"
- name: Ensure remote directory exists
run: |
@@ -42,6 +41,6 @@ jobs:
- name: Deploy via rsync
run: |
rsync -avz --delete \
-e "ssh -i ~/.ssh/id_ed25519 -p ${{ secrets.DEPLOY_PORT }} -o UpdateHostKeys=no" \
-e "ssh -i ~/.ssh/id_ed25519 -p ${{ secrets.DEPLOY_PORT }}" \
index.html styles.css de/ en/ \
${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }}:${{ secrets.DEPLOY_PATH }}