chad/.gitea/workflows/deploy-server.yml
Никита Круглицкий aa31e7ad0c
Some checks failed
Deploy / deploy (push) Failing after 8s
server
2025-10-09 23:52:08 +06:00

50 lines
1.5 KiB
YAML

name: Deploy
on:
push:
branches:
- master
paths:
- '.gitea/workflows/deploy-server.yml'
- 'server/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Keyscan
run: |
ssh-keyscan git.koptilnya.xyz >> ~/.ssh/known_hosts
- name: Checkout
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
ssh-strict: false
persist-credentials: false
- name: Backup DB
run: cp /home/koptilnya/services/chad/data/database.db /home/koptilnya/services/chad/database-$(date +"%d-%m-%Y").db
- name: Build
run: docker build -t chad-server ./server
- name: Stop old container
run: docker rm -f chad-server || true
- name: Run
run: |
docker run -d \
--name chad-server \
--network traefik \
--volume /home/koptilnya/services/chad/data:/app/data \
-p 40000-40100:40000-40100/udp \
--label "traefik.enable=true" \
--label "traefik.http.routers.chad-server.rule=Host(\`api.koptilnya.xyz\`) && PathPrefix(\`/chad\`)" \
--label "traefik.http.routers.chad-server.entrypoints=websecure" \
--label "traefik.http.routers.chad-server.tls=true" \
--label "traefik.http.routers.chad-server.tls.certresolver=myresolver" \
--label "traefik.http.services.chad-server.loadbalancer.server.port=80" \
chad-server:latest