From f1fc074f1f47142d6b2eeb2959ae260cc44f67b2 Mon Sep 17 00:00:00 2001 From: Amy Retzerau Date: Wed, 24 Sep 2025 18:36:03 +0200 Subject: [PATCH] fix: fixed permission issure 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 edcdd5e..cf46bf9 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -36,5 +36,5 @@ jobs: - name: upload to web run: | scp -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 666 /var/www/html/ + ssh -i ${{ github.workspace }}/../private.key -p ${{ secrets.BLOG_PORT }} blog@madeio.net chmod -R 775 /var/www/html/ - run: echo "🍏 This job's status is ${{ job.status }}."