chad/.gitea/workflows/deploy-server.yml
Никита Круглицкий b8a21a1451
Some checks failed
Deploy / deploy (push) Failing after 13s
update
2025-10-09 22:37:02 +06:00

47 lines
1.4 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: 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/database.db:./app/prisma/database.db \
-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