Files
SysAdmin Agent 33ca6c0a1c Fix CI/CD: export APP_VERSION before docker-compose build
Ensures APP_VERSION is available as an environment variable
when docker-compose starts, so containers pick up the correct version.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 22:02:11 +00:00

201 lines
6.2 KiB
YAML

name: CI/CD Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test_stiftung
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis:7-alpine
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Cache pip dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('app/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y postgresql-client
python -m pip install --upgrade pip
pip install -r app/requirements.txt
- name: Set up environment
run: |
cp env-template.txt app/.env
cd app
echo "DJANGO_DEBUG=1" >> .env
echo "DJANGO_SECRET_KEY=test-secret-key-for-ci" >> .env
echo "POSTGRES_DB=test_stiftung" >> .env
echo "POSTGRES_USER=postgres" >> .env
echo "POSTGRES_PASSWORD=postgres" >> .env
echo "DB_HOST=localhost" >> .env
echo "DB_PORT=5432" >> .env
echo "REDIS_URL=redis://localhost:6379/0" >> .env
- name: Wait for PostgreSQL
run: |
while ! pg_isready -h localhost -p 5432 -U postgres; do
echo "Waiting for PostgreSQL..."
sleep 2
done
echo "PostgreSQL is ready!"
- name: Run migrations
working-directory: ./app
env:
DJANGO_DEBUG: "1"
DJANGO_SECRET_KEY: "test-secret-key-for-ci"
POSTGRES_DB: "test_stiftung"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
DB_HOST: "localhost"
DB_PORT: "5432"
run: |
python manage.py migrate
- name: Run tests
working-directory: ./app
env:
DJANGO_DEBUG: "1"
DJANGO_SECRET_KEY: "test-secret-key-for-ci"
POSTGRES_DB: "test_stiftung"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
DB_HOST: "localhost"
DB_PORT: "5432"
run: |
python manage.py test
- name: Check Django configuration
working-directory: ./app
env:
DJANGO_DEBUG: "1"
DJANGO_SECRET_KEY: "test-secret-key-for-ci"
POSTGRES_DB: "test_stiftung"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
DB_HOST: "localhost"
DB_PORT: "5432"
run: |
python manage.py check --deploy
- name: Collect static files
working-directory: ./app
env:
DJANGO_DEBUG: "1"
DJANGO_SECRET_KEY: "test-secret-key-for-ci"
POSTGRES_DB: "test_stiftung"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
DB_HOST: "localhost"
DB_PORT: "5432"
run: |
python manage.py collectstatic --noinput
deploy:
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' # Auto-deploy when pushing to main branch
environment: production
steps:
- name: Deploy to production
uses: appleboy/ssh-action@v1.0.3
env:
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
with:
host: ${{ secrets.PROD_HOST }}
username: ${{ secrets.PROD_USERNAME }}
key: ${{ secrets.PROD_SSH_KEY }}
envs: DEPLOY_TOKEN
script: |
cd /opt/stiftung
# Check if production .env exists in root directory
if [ ! -f .env ]; then
echo "ERROR: No production .env file found at /opt/stiftung/.env"
echo "Please create it manually using the env-production.template as reference"
echo "Steps:"
echo "1. cp env-production.template .env"
echo "2. nano .env # Edit with real production values"
echo "3. chmod 600 .env # Secure permissions"
exit 1
fi
echo "Production .env file found - proceeding with deployment"
# Configure git pull strategy and force pull latest code changes
git config pull.rebase false
git fetch https://$DEPLOY_TOKEN@github.com/remmerinio/stiftung-management-system.git main
git reset --hard FETCH_HEAD
# The main compose.yml is already the correct production configuration
# No need to copy from deploy-production since we use compose.yml directly
echo "Using main compose.yml for production deployment"
# Pull standard images (redis, postgres, grampsweb) but build our app from source
echo "Pulling standard Docker images..."
docker-compose -f compose.yml pull db redis grampsweb || echo "Some standard images failed to pull, will use cached versions"
# Stop containers and clean up
docker-compose -f compose.yml down
docker system prune -f
# Build and start containers from source code
echo "🔨 Building and starting containers from source code..."
export APP_VERSION=$(cat VERSION 2>/dev/null || echo "unknown")
docker-compose -f compose.yml up -d --build
# Wait for containers to be ready
echo "Waiting for containers to start..."
sleep 30
# Run migrations
docker-compose -f compose.yml exec -T web python manage.py migrate
# Collect static files
docker-compose -f compose.yml exec -T web python manage.py collectstatic --noinput
# Show container status
docker-compose -f compose.yml ps