145 lines
5.3 KiB
YAML
145 lines
5.3 KiB
YAML
# .gitea/workflows/deploy.yml
|
|
|
|
name: Build and Deploy Backend
|
|
run-name: ${{ gitea.actor }} deploying backend on Gitea Actions 🚀
|
|
|
|
on:
|
|
# Triggers the workflow on push events but only for the main branch
|
|
push:
|
|
branches: [ main ]
|
|
paths: # Only run if backend code or Docker config changes
|
|
- 'backend/**'
|
|
- '.gitea/workflows/deploy.yml'
|
|
- 'backend/docker-compose.yml'
|
|
|
|
# Allows running of this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
# Ensures the project will never be out of date by running a cron for this job
|
|
# Currently set to every Sunday at 3 AM UTC
|
|
schedule:
|
|
- cron: '0 3 * * 0'
|
|
|
|
jobs:
|
|
# ========================================================================
|
|
# Job to run unit tests.
|
|
# ========================================================================
|
|
test:
|
|
name: Run Linters and Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checks out the repo under $GITHUB_WORKSPACE
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
# Sets up Python 3.12 environment
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.12.3'
|
|
|
|
# Cache pip dependencies for faster reruns
|
|
- name: Cache pip dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
|
|
- name: Install dependencies
|
|
working-directory: ./backend
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install -r requirements-dev.txt
|
|
|
|
- name: Lint with Ruff
|
|
working-directory: ./backend
|
|
run: |
|
|
ruff check .
|
|
|
|
- name: Check formatting with Black
|
|
working-directory: ./backend
|
|
run: |
|
|
black --check .
|
|
|
|
- name: Run Pytest
|
|
working-directory: ./backend
|
|
run: |
|
|
pytest
|
|
|
|
# ========================================================================
|
|
# Job to build and deploy the Docker image to mara.
|
|
# ========================================================================
|
|
build-and-deploy:
|
|
name: Build and Deploy
|
|
runs-on: ubuntu-latest
|
|
needs: test # Ensure tests pass before deploying
|
|
|
|
# Only run this job if triggered by a push to main or manual dispatch/schedule
|
|
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
|
|
|
|
steps:
|
|
# Checks out the repo under $GITHUB_WORKSPACE
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
# ------------------------------------------------------------------
|
|
# Login to Container Registry (Using GHCR)
|
|
# ------------------------------------------------------------------
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }} # Uses the username stored in secrets
|
|
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }} # Uses the PAT stored in secrets
|
|
|
|
# ------------------------------------------------------------------
|
|
# Set up Docker Buildx for advanced build features
|
|
# ------------------------------------------------------------------
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
# ------------------------------------------------------------------
|
|
# Build and Push Docker Image
|
|
# ------------------------------------------------------------------
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./backend
|
|
file: ./backend/Dockerfile # Explicit path to Dockerfile
|
|
push: true # Push the image after building
|
|
tags: | # Use SHA for version specific, latest for general
|
|
ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:${{ gitea.sha }}
|
|
ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:latest
|
|
# Pull latest base image updates when building (good for scheduled runs)
|
|
pull: true
|
|
|
|
# ------------------------------------------------------------------
|
|
# Deploy to mara
|
|
# ------------------------------------------------------------------
|
|
- name: Deploy Locally
|
|
run: |
|
|
set -e # Exit script on first error
|
|
|
|
# Set deployment path
|
|
DEPLOY_PATH="/config/stacks/maia"
|
|
|
|
# Pull the specific image version built in this workflow
|
|
echo "Pulling image ${{ gitea.sha }}..."
|
|
docker pull ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:${{ gitea.sha }}
|
|
|
|
# Change to the directory containing the compose file
|
|
cd ${{ DEPLOY_PATH }}
|
|
|
|
# Pull the latest images for other services to ensure they stay up to date
|
|
docker compose pull redis db
|
|
|
|
|
|
sed -i 's|image: ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:.*|image: ghcr.io/${{ secrets.DOCKER_REGISTRY_USERNAME }}/maia:${{ gitea.sha }}|g' docker-compose.yml
|
|
|
|
echo "Bringing compose stack down and up with new image..."
|
|
docker compose up -d --force-recreate --remove-orphans
|
|
echo "Local deployment complete!"
|