Try to fix signature mismatch
Deploy static site / deploy (push) Failing after 26s

This commit is contained in:
2026-04-23 11:39:58 +02:00
parent d00ada3716
commit 42e3c65881
+14 -13
View File
@@ -17,19 +17,20 @@ jobs:
- name: Setup SSH - name: Setup SSH
run: | run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh
echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/id_ed25519 echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -p ${{ secrets.DEPLOY_PORT }} ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts ssh-keyscan -p ${{ secrets.DEPLOY_PORT }} ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts
- name: Test SSH connection - name: Test SSH connection
run: | run: |
ssh -i ~/.ssh/id_ed25519 \ ssh -i ~/.ssh/id_ed25519 \
-p ${{ secrets.DEPLOY_PORT }} \ -p ${{ secrets.DEPLOY_PORT }} \
-o StrictHostKeyChecking=yes \ -o StrictHostKeyChecking=yes \
${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} \ -o UpdateHostKeys=no \
"echo SSH connection successful" ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} \
"echo SSH OK"
- name: Ensure remote directory exists - name: Ensure remote directory exists
run: | run: |
@@ -40,7 +41,7 @@ jobs:
- name: Deploy via rsync - name: Deploy via rsync
run: | run: |
rsync -avz --delete \ rsync -avz --delete \
-e "ssh -i ~/.ssh/id_ed25519 -p ${{ secrets.DEPLOY_PORT }}" \ -e "ssh -i ~/.ssh/id_ed25519 -p ${{ secrets.DEPLOY_PORT }} -o UpdateHostKeys=no" \
index.html styles.css de/ en/ \ index.html styles.css de/ en/ \
${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }}:${{ secrets.DEPLOY_PATH }} ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }}:${{ secrets.DEPLOY_PATH }}