From 9abdf38a8a2f29fa1624bce96c15d2c9a55f2e4a Mon Sep 17 00:00:00 2001 From: edsea Date: Wed, 8 Oct 2025 11:38:37 +0200 Subject: [PATCH] Fix build --- .gitea/workflows/deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 4183fcf..9948905 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -30,14 +30,15 @@ jobs: git checkout -q "$GITHUB_SHA" - name: Write SSH key + env: + SSH_KEY_STELLAAMOR: ${{ secrets.SSH_KEY_STELLAAMOR }} run: | install -m 700 -d ~/.ssh umask 177 - cat > ~/.ssh/deploy_stellaamor <<'KEY' -${{ secrets.SSH_KEY_STELLAAMOR }} -KEY + printf '%s' "$SSH_KEY_STELLAAMOR" > ~/.ssh/deploy_stellaamor chmod 600 ~/.ssh/deploy_stellaamor + - name: SSH smoke test run: ssh $SSH_OPTS -i "$SSH_KEY_PATH" ${SSH_USER}@${SSH_HOST} true