From 1ddff719cb6a7ee370c2eb5b5194d0df9ce65a3e Mon Sep 17 00:00:00 2001 From: Amy Retzerau Date: Thu, 25 Sep 2025 11:26:24 +0200 Subject: [PATCH] fix: syntax error fixed in action --- .gitea/workflows/demo.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 6b1a8ab..085c74e 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -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 }}."