Update .forgejo/workflows/build.yaml
publish / publish (push) Failing after 14s Details

Marc Riera 2024-02-17 16:40:59 +01:00
parent 6c9aed9569
commit 93b7d5f355
1 changed files with 4 additions and 2 deletions

View File

@ -10,6 +10,8 @@ jobs:
runs-on: ubuntu-latest
env:
SSH_PRIVATE_KEY: ${{ secrets.PUBLISHER_PRIVATE_KEY }}
SSH_HOST: ${{ secrets.PUBLISHER_HOST }}
SSH_PORT: ${{ secrets.PUBLISHER_PORT }}
steps:
- uses: actions/checkout@v4
with:
@ -30,5 +32,5 @@ jobs:
echo "$SSH_PRIVATE_KEY" | ssh-add -
apt update && apt install -y rsync
mkdir ~/.ssh
ssh-keyscan -p 3001 sakura.local > ~/.ssh/known_hosts
rsync -atv --progress --delete -e 'ssh -p 3001' ./public/ publisher@sakura.local:/usr/share/nginx/html/
ssh-keyscan -p $SSH_PORT $SSH_HOST > ~/.ssh/known_hosts
rsync -atv --progress --delete -e 'ssh -p $SSH_PORT' ./public/ publisher@$SSH_HOST:/usr/share/nginx/html/