Skip to content

Commit

Permalink
add proxy username
Browse files Browse the repository at this point in the history
  • Loading branch information
Isak-Kallini committed Feb 25, 2025
1 parent c1b7e90 commit 4f954e0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ jobs:
- name: Copy build to server
uses: appleboy/scp-action@master
with:
host: "web-beta"
host: web-beta
proxy_host: bifrost.blossom.dsek.se
username: ${{ secrets.DEPLOY_SSH_USERNAME }}
username: web-ci
proxy_username: web-ci
key: ${{ secrets.DEPLOY_SSH_KEY }}
proxy_key: ${{ secrets.DEPLOY_SSH_KEY }}
source: "build.zip"
Expand All @@ -59,9 +60,10 @@ jobs:
- name: Deploy website on server
uses: appleboy/ssh-action@master
with:
host: "web-beta"
host: web-beta
proxy_host: bifrost.blossom.dsek.se
username: ${{ secrets.DEPLOY_SSH_USERNAME }}
username: web-ci
proxy_username: web-ci
key: ${{ secrets.DEPLOY_SSH_KEY }}
proxy_key: ${{ secrets.DEPLOY_SSH_KEY }}
script_path: ./prod/deploy-script.sh

0 comments on commit 4f954e0

Please sign in to comment.