fix: changed key store in action
Some checks failed
Gitea Actions Demo / Build (push) Failing after 1m27s

This commit is contained in:
2025-09-23 17:57:21 +02:00
parent 36ebb57c97
commit 5714a40b25

View File

@@ -23,6 +23,6 @@ jobs:
cd ${{ gitea.workspace }}
- run: npm ci
- run: npm run build
- run: echo ${{ BLOG_SSH_KEY }} > ../key.priv
- run: scp -i ../key.priv -P ${{ secrets.BLOG_PORT }} -r build/* blog@madeio.net:/var/www/html/
- run: echo "${{ BLOG_SSH_KEY }}" > key.priv
- run: scp -i key.priv -P ${{ secrets.BLOG_PORT }} -r build/* blog@madeio.net:/var/www/html/
- run: echo "🍏 This job's status is ${{ job.status }}."