-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new bot manager workflow * Use BOT_MANAGER_HOST instead of LOADTEST_CLIENT_HOST * Remove on-push trigger
- Loading branch information
1 parent
14d91ba
commit f429c98
Showing
5 changed files
with
77 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: "[BOT-MANAGER] Deploy to Bot Manager Server" | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-deploy: | ||
name: Build and deploy to Chile Loadtest Client | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: bot-manager | ||
url: https://bot-manager.championsofmirra.com/ | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Tailscale | ||
uses: tailscale/github-action@v2 | ||
with: | ||
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} | ||
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} | ||
tags: tag:ci | ||
|
||
- name: Create ssh private key file from env var | ||
env: | ||
SSH_KEY: ${{ secrets.SSH_KEY }} | ||
SSH_HOST: ${{ vars.TS_HOST }} | ||
run: | | ||
set -ex | ||
mkdir -p ~/.ssh/ | ||
sed -E 's/(-+(BEGIN|END) OPENSSH PRIVATE KEY-+) *| +/\1\n/g' <<< "$SSH_KEY" > ~/.ssh/id_ed25519 | ||
chmod 400 ~/.ssh/id_ed25519 | ||
retries=5; until ssh-keyscan $SSH_HOST >> ~/.ssh/known_hosts || [ $retries -eq 0 ]; do ((retries--)); sleep 5; done | ||
- name: Copy deploy script | ||
env: | ||
SSH_USERNAME: ${{ vars.SSH_USERNAME }} | ||
SSH_HOST: ${{ vars.TS_HOST }} | ||
run: | | ||
set -ex | ||
rsync -avz --mkpath devops/deploy.sh ${SSH_USERNAME}@${SSH_HOST}:/home/${SSH_USERNAME}/deploy-script/ | ||
- name: Execute deploy script | ||
env: | ||
XDG_RUNTIME_DIR: ${{ vars.XDG_RUNTIME_DIR }} | ||
SSH_HOST: ${{ vars.TS_HOST }} | ||
SSH_USERNAME: ${{ vars.SSH_USERNAME }} | ||
MIX_ENV: ${{ vars.MIX_ENV }} | ||
RELEASE: bot_manager | ||
PHX_SERVER: ${{ vars.PHX_SERVER }} | ||
PHX_HOST: ${{ vars.HOST }} | ||
PORT: ${{ vars.BOT_MANAGER_PORT }} | ||
DATABASE_URL: ${{ secrets.DATABASE_URL }} | ||
SECRET_KEY_BASE: ${{ secrets.SECRET_KEY_BASE }} | ||
NEWRELIC_APP_NAME: ${{ vars.NEWRELIC_APP_NAME }} | ||
NEWRELIC_KEY: ${{ secrets.NEWRELIC_KEY }} | ||
DBUS_SESSION_BUS_ADDRESS: ${{ vars.DBUS_SESSION_BUS_ADDRESS }} | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
run: | | ||
set -ex | ||
ssh ${SSH_USERNAME}@${SSH_HOST} \ | ||
XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR} \ | ||
BRANCH_NAME=${BRANCH_NAME} \ | ||
MIX_ENV=${MIX_ENV} \ | ||
RELEASE=${RELEASE} \ | ||
PHX_SERVER=${PHX_SERVER} \ | ||
PHX_HOST=${PHX_HOST} \ | ||
PORT=${PORT} \ | ||
DATABASE_URL=${DATABASE_URL} \ | ||
SECRET_KEY_BASE=${SECRET_KEY_BASE} \ | ||
NEWRELIC_APP_NAME=${NEWRELIC_APP_NAME} \ | ||
NEWRELIC_KEY=${NEWRELIC_KEY} \ | ||
DBUS_SESSION_BUS_ADDRESS=${DBUS_SESSION_BUS_ADDRESS} \ | ||
/home/${SSH_USERNAME}/deploy-script/deploy.sh |