fix: changed syncing structure in action
Some checks failed
Gitea Actions Demo / Build (push) Failing after 1m9s

This commit is contained in:
2025-09-25 11:20:14 +02:00
parent a08dfcf4c1
commit 6ba4541d87

View File

@@ -35,6 +35,6 @@ jobs:
run: npm run build
- name: upload to web
run: |
scp -r -i ${{ github.workspace }}/../private.key -P ${{ secrets.BLOG_PORT }} build/* blog@madeio.net:/var/www/html/
ssh -i ${{ github.workspace }}/../private.key -p ${{ secrets.BLOG_PORT }} blog@madeio.net chmod -R 775 /var/www/html/
scp -r -i ${{ github.workspace }}/../private.key -P ${{ secrets.BLOG_PORT }} build blog@madeio.net:/var/www/html/
ssh -i ${{ github.workspace }}/../private.key -p ${{ secrets.BLOG_PORT }} blog@madeio.net chmod -R 775 /var/www/html/build | cp /var/www/html/build/* /var/www/html/
- run: echo "🍏 This job's status is ${{ job.status }}."