Try and fix upload, and update content

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2023-12-25 13:33:20 +01:00
parent 6884a663e7
commit d170e28aeb
3 changed files with 22 additions and 4 deletions
+4 -4
View File
@@ -56,11 +56,11 @@ jobs:
- name: "Restore SSH Key"
shell: bash
run: |
echo "${{ secrets.SSHKEY }}" | base64 -d > ~/.ssh/id_ed25519
echo "Host xaymar.com" >> ~/.ssh/config
echo " StrictHostKeyChecking no" >> ~/.ssh/config
mkdir $HOME/.ssh
echo "${{ secrets.SSHKEY }}" | base64 -d > $HOME/.ssh/id_ed25519
echo "Host xaymar.com" >> $HOME/.ssh/config
echo " StrictHostKeyChecking no" >> $HOME/.ssh/config
- name: "Publish"
shell: bash
run: |
rsync -v -h -P -a --delete . "com.xaymar@xaymar.com:/var/www/com.xaymar/public/com.xaymar.www/"