Compare commits

..

No commits in common. "f534c1681ddf2703c78642f442d1c58ba5bd1465" and "afd69e5fbf0e00ee083c68392bdd8a221f36a3f3" have entirely different histories.

View file

@ -9,16 +9,19 @@ jobs:
deploy:
runs-on: docker
container:
image: node:26-bookworm
volumes:
- /data/docker/forgejo-runner/data:/runner-data:ro
steps:
- name: Deploy on WebApps
env:
DEPLOY_SSH_KEY: ${{ secrets.DEPLOY_SSH_KEY }}
run: |
apt-get update
apt-get install -y openssh-client
mkdir -p ~/.ssh
printf '%s\n' "$DEPLOY_SSH_KEY" > ~/.ssh/id_ed25519
cp /runner-data/forgejo-runner.key ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh -o StrictHostKeyChecking=no \