portfolio/.gitea/workflows/deploy.yml
Заид Омар Медхат | Zaid Omar Medhat d8ed677d0e
All checks were successful
Deploy Production / deploy (push) Successful in 1m6s
fix: docker compose location
2026-01-26 18:06:26 +05:00

25 lines
465 B
YAML

name: Deploy Production
on:
workflow_dispatch:
push:
branches:
- master
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/portfolio.git .
- name: Build & Deploy
run: |
docker compose build
docker compose up -d