finance-api/.gitea/workflows/deploy-production.yml
Заид Омар Медхат 2040c49678
All checks were successful
Deploy Production / deploy (push) Successful in 1m34s
f
2025-12-26 00:29:45 +05:00

25 lines
523 B
YAML

name: Deploy Production
on:
workflow_dispatch:
push:
branches:
- main
jobs:
deploy:
runs-on: docker
container:
image: docker:latest
steps:
- name: Install git
run: apk add --no-cache git
- name: Clone repository
run: git clone --depth 1 https://git.ai-assistant-bot.xyz/root/finance-api.git .
- name: Build & Deploy
run: |
docker compose -f docker-compose.server.yml build
docker compose -f docker-compose.server.yml up -d