Skip to content

Commit

Permalink
fix(ci): replace secret variable with static IP in deploy workflow
Browse files Browse the repository at this point in the history
Updated SSH connection command to use a static IP address instead of the secret variable to ensure successful workflow execution.
  • Loading branch information
frederic moras committed Dec 23, 2024
1 parent dd8d203 commit b755a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Test SSH Connection
run: |
ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa root@${{ secrets.DO_HOST }} echo "SSH connection successful"
ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa root@207.154.255.72 echo "SSH connection successful"
- name: Deploy using SSH
uses: appleboy/[email protected]
Expand Down

0 comments on commit b755a53

Please sign in to comment.