fix(actions)

This commit is contained in:
z0x 2025-01-25 15:42:32 -05:00
parent ee5ab8a2cf
commit f009b7a377

View file

@ -23,10 +23,11 @@ jobs:
bun install bun install
bun run build bun run build
- name: Commit dist - name: Deploy to VPS
run: | uses: appleboy/scp-action@master
git config user.name "gitea-actions[bot]" with:
git config user.email "gitea-actions[bot]@git.z0x.ca" host: ${{ secrets.HOST }}
git add -f dist username: ${{ secrets.USERNAME }}
git commit -m "ci(dist): build dist" key: ${{ secrets.SSH_PRIVATE_KEY }}
git push -f origin build source: "dist/*"
target: ${{ secrets.TARGET }}