fix: fixed permission issure in action
Some checks failed
Gitea Actions Demo / Build (push) Failing after 1m15s

This commit is contained in:
2025-09-24 18:36:03 +02:00
parent 77adf10d54
commit f1fc074f1f

View File

@@ -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 }}."