Deploy Microservices from 'actions_server_deploy' branch #9
Workflow file for this run
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
name: ☁️ Deploy Microservices | |
on: | |
workflow_dispatch: | |
inputs: | |
redeploy_all: | |
type: boolean | |
default: false | |
description: Redeploy all (be careful!) | |
redeploy_tcp_sockets: | |
type: boolean | |
default: false | |
description: TCP Sockets | |
redeploy_update_server: | |
type: boolean | |
default: false | |
description: Update server (bin list) | |
redeploy_web_server: | |
type: boolean | |
default: false | |
description: Web server | |
redeploy_alerts: | |
type: boolean | |
default: false | |
description: Alerts | |
polling-interval: | |
type: number | |
default: 2 | |
description: Polling interval (seconds) | |
redeploy_weather: | |
type: boolean | |
default: false | |
description: Weather | |
redeploy_updater: | |
type: boolean | |
default: false | |
description: Updater | |
redeploy_svg_generator: | |
type: boolean | |
default: false | |
description: SVG Generator | |
redeploy_explosions: | |
type: boolean | |
default: false | |
description: Explosions | |
run-name: Deploy Microservices from '${{ github.ref_name }}' branch | |
jobs: | |
deploy_microservices: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Redeploy TCP Sockets | |
if: ${{ inputs.redeploy_tcp_sockets || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_tcp_server.sh -m ${{ secrets.MEMCACHED_HOST }} | |
- name: Redeploy Update Server (bin list) | |
if: ${{ inputs.redeploy_update_server || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_update_server.sh -s '/root/ukraine_alarm_map/bin' | |
- name: Redeploy Web Server | |
if: ${{ inputs.redeploy_web_server || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_web_server.sh -d ${{ secrets.WEB_TOKEN }} -p 80 -m ${{ secrets.MEMCACHED_HOST }} | |
- name: Redeploy Alerts | |
if: ${{ inputs.redeploy_alerts || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_alerts.sh -a ${{ secrets.AIR_ALARM_API_KEY }} -p ${{ inputs.polling-interval }} -m ${{ secrets.MEMCACHED_HOST }} | |
- name: Redeploy Weather | |
if: ${{ inputs.redeploy_weather || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_weather.sh -w ${{ secrets.WEATHER_TOKEN }} -m ${{ secrets.MEMCACHED_HOST }} | |
- name: Redeploy Updater | |
if: ${{ inputs.redeploy_updater || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_updater.sh -m ${{ secrets.MEMCACHED_HOST }} | |
- name: Redeploy Svg Generator | |
if: ${{ inputs.redeploy_svg_generator || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_svg_generator.sh -m ${{ secrets.MEMCACHED_HOST }} | |
- name: Redeploy Explosions | |
if: ${{ inputs.redeploy_explosions || inputs.redeploy_all }} | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_SSH_USER }} | |
password: ${{ secrets.SERVER_SSH_PASSWORD }} | |
script: | | |
cd /root/ukraine_alarm_map/deploy/ | |
git fetch --all | |
git checkout ${{ github.ref_name }} | |
bash redeploy_explosions.sh -e ${{ secrets.ETRYVOGA_HOST }} -m ${{ secrets.MEMCACHED_HOST }} |