Skip to content

Commit 92b6b49

Browse files
committed
fix: Update deployment workflow to use secrets for SSH connection details
1 parent 12a1959 commit 92b6b49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- name: ✉️ Run deploy commands on VPS
1717
uses: appleboy/ssh-action@master
1818
with:
19-
host: ${{ vars.SSH_HOST }}
20-
username: ${{ vars.SSH_USER }}
21-
port: ${{ vars.SSH_PORT }}
19+
host: ${{ secrets.SSH_HOST }}
20+
username: ${{ secrets.SSH_USER }}
21+
port: ${{ secrets.SSH_PORT }}
2222
key: ${{ secrets.SSH_SECRET_KEY }}
2323
script: |
2424
cd /home/apps/zyrohub

0 commit comments

Comments
 (0)