fix: syntax error fixed in action
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m10s

This commit is contained in:
2025-09-25 11:26:24 +02:00
parent 6ba4541d87
commit 1ddff719cb

View File

@@ -36,5 +36,5 @@ jobs:
- 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/build | cp /var/www/html/build/* /var/www/html/
ssh -i ${{ github.workspace }}/../private.key -p ${{ secrets.BLOG_PORT }} blog@madeio.net "chmod -R 775 /var/www/html/build; cp -r /var/www/html/build/* /var/www/html/"
- run: echo "🍏 This job's status is ${{ job.status }}."