Release pipeline
Unittests / unittests (push) Successful in 10s Details
Unittests / deploy-dev (push) Successful in 56s Details

This commit is contained in:
Adam Štrauch 2023-11-25 19:57:06 +01:00
parent 3cdeb47625
commit c142b06565
Signed by: cx
GPG Key ID: 7262DAFE292BCE20
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
name: Release
on:
release:
types: [published]
workflow_dispatch: {}
jobs:
deploy-production:
runs-on: [amd64, prod]
env:
NODES: node-22.rosti.cz node-23.rosti.cz node-24.rosti.cz
steps:
- uses: actions/checkout@v4
- name: deploy
run: |
echo "Building for Debian 12 .."
docker run --rm --privileged -ti -v `pwd`:/srv golang:1.21-bookworm /bin/sh -c "cd /srv && go build"
for NODE in $NODES; do
echo "\033[0;32mDeploying $NODE\033[0m"
echo "\033[1;33m.. scanning SSH keys\033[0m"
ssh -o "StrictHostKeyChecking=no" root@$NODE echo "Setting up key"
echo "\033[1;33m.. copying the binary\033[0m"
scp node-api root@$NODE:/usr/local/bin/node-api_
echo "\033[1;33m.. replacing the binary\033[0m"
ssh root@$NODE mv /usr/local/bin/node-api_ /usr/local/bin/node-api
echo "\033[1;33m.. restarting service\033[0m"
ssh root@$NODE systemctl restart node-api
done