chad/.gitea/workflows/deploy-server.yml
Никита Круглицкий 6d4076969e
All checks were successful
Deploy / deploy (push) Successful in 23s
#2 update
2025-10-02 03:54:35 +06:00

46 lines
1.3 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 \
-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