Skip to content

Commit

Permalink
Update woodpecker config to use new ip
Browse files Browse the repository at this point in the history
  • Loading branch information
Vylpes committed Apr 23, 2024
1 parent 14929b1 commit ea9c8c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .woodpecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ steps:
- apk add rsync openssh-client
- eval `ssh-agent -s`
- echo "$SSH_KEY" | tr -d '\r' | ssh-add -
- rsync -e "ssh -o StrictHostKeyChecking=no" -r ./* [email protected].68.120:/home/vylpes/apps/card-drop/card-drop_stage
- ssh [email protected].68.120 BOT_TOKEN='$${stage_bot_token}' 'bash -s' < ./scripts/deploy_stage.sh
- rsync -e "ssh -o StrictHostKeyChecking=no" -r ./* [email protected].1.115:/home/vylpes/apps/card-drop/card-drop_stage
- ssh [email protected].1.115 BOT_TOKEN='$${stage_bot_token}' 'bash -s' < ./scripts/deploy_stage.sh
when:
event: push
branch: [ develop ]
Expand All @@ -40,8 +40,8 @@ steps:
- apk add rsync openssh-client
- eval `ssh-agent -s`
- echo "$SSH_KEY" | tr -d '\r' | ssh-add -
- rsync -e "ssh -o StrictHostKeyChecking=no" -r ./* [email protected].68.120:/home/vylpes/apps/card-drop/card-drop_prod
- ssh [email protected].68.120 BOT_TOKEN='$${prod_bot_token}' 'bash -s' < ./scripts/deploy_prod.sh
- rsync -e "ssh -o StrictHostKeyChecking=no" -r ./* [email protected].1.115:/home/vylpes/apps/card-drop/card-drop_prod
- ssh [email protected].1.115 BOT_TOKEN='$${prod_bot_token}' 'bash -s' < ./scripts/deploy_prod.sh
when:
event: push
branch: [ main ]

0 comments on commit ea9c8c5

Please sign in to comment.