feat(deploy): add telegram.pezkiwi.app as second deploy target

This commit is contained in:
2026-02-14 11:08:25 +03:00
parent 9da348bdf3
commit f6125a127d
3 changed files with 15 additions and 5 deletions
+11 -1
View File
@@ -34,7 +34,7 @@ jobs:
- run: npm run build
- name: Deploy to VPS
- name: Deploy to telegram.pezkuwichain.io
uses: appleboy/scp-action@v1.0.0
with:
host: ${{ secrets.VPS1_HOST }}
@@ -43,3 +43,13 @@ jobs:
source: 'dist/*'
target: '/var/www/telegram.pezkuwichain.io'
strip_components: 1
- name: Deploy to telegram.pezkiwi.app
uses: appleboy/scp-action@v1.0.0
with:
host: ${{ secrets.VPS1_HOST }}
username: ${{ secrets.VPS1_USER }}
key: ${{ secrets.VPS1_SSH_KEY }}
source: 'dist/*'
target: '/var/www/telegram.pezkiwi.app'
strip_components: 1