-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.79 KB
/
deploy.yaml
File metadata and controls
63 lines (51 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Deploy
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: false
default: 'warning'
jobs:
deploy:
runs-on: ubuntu-latest
env:
S_NAME: ${{ secrets.TIMEWEB_SSH_HOST }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64
context: .
file: ./build/Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/go-template:latest
- name: Set up SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.TIMEWEB_SSH_KEY }}
known_hosts: ${{ secrets.TIMEWEB_SSH_IP }}
- name: Deploy to Remote Server
run: |
rsync -avze "ssh -o StrictHostKeyChecking=no" deployments/docker-compose.server.yaml ${{ secrets.TIMEWEB_SSH_HOST }}:/root/go-template/docker-compose.yaml
rsync -avze "ssh -o StrictHostKeyChecking=no" deployments/victoria.yaml ${{ secrets.TIMEWEB_SSH_HOST }}:/root/go-template/victoria.yaml
ssh -o StrictHostKeyChecking=no ${{ secrets.TIMEWEB_SSH_HOST }} << 'EOF'
set -e
cd /root/go-template
docker compose down
docker compose pull --quiet
docker compose up -d --remove-orphans
docker image prune -f
echo "✅ Deploy completed!"
EOF