Gitea/workflows #1

Closed
jheaps wants to merge 47 commits from gitea/workflows into AddProject
Showing only changes of commit 3bfcbaa190 - Show all commits
+3 -1
View File
@@ -63,7 +63,9 @@ jobs:
- name: Rsync to server - name: Rsync to server
run: | run: |
rsync -az --delete -e "ssh -p ${{ secrets.SSH_PORT || 22 }} -i ~/.ssh/id_rsa" \ # --exclude chess-data: never let --delete remove the learned-engine training
# data, which lives in the deploy dir unless ChessEngine__WeightsPath is set.
rsync -az --delete --exclude 'chess-data' -e "ssh -p ${{ secrets.SSH_PORT || 22 }} -i ~/.ssh/id_rsa" \
publish/ ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_DIR }}/ publish/ ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_DIR }}/
- name: Reload and restart service - name: Reload and restart service