feat: implement full CI/CD pipeline with staged deployments
Pull Request / unit-tests (pull_request) Failing after 5m34s
Pull Request / build-and-deploy-ci (pull_request) Has been skipped
Pull Request / analyze-bump-type (pull_request) Has been skipped

- PR workflow: build, deploy to CI site, wait for health, run acceptance tests
- Release workflow: deploy to dev using mounted compose path with health check
- Add deploy-prod workflow (workflow_dispatch) for human-gated prod deployment
- Add just recipes: deploy-prod, status (view current image tags across envs)
- Runners now have /apps mount for access to all environment compose files
This commit is contained in:
2026-05-07 02:30:30 -07:00
parent b1c4e9a0ce
commit ac8562ea51
4 changed files with 168 additions and 27 deletions
+52
View File
@@ -0,0 +1,52 @@
name: Deploy Production
on:
workflow_dispatch:
inputs:
version:
description: 'Version tag to deploy (e.g., v0.1.21)'
required: true
type: string
env:
REGISTRY: docker.notsosm.art
IMAGE_NAME: euchre-camp
PROD_APPS_PATH: /apps/youthful_simon
jobs:
deploy-prod:
runs-on: ubuntu-latest
container:
image: docker.notsosm.art/euchre-camp/ci-base:latest
options: --user root
steps:
- name: Deploy to production
run: |
VERSION="${{ inputs.version }}"
COMPOSE_FILE="${{ env.PROD_APPS_PATH }}/docker-compose.yml"
echo "Deploying ${VERSION} to production..."
# Update prod compose file with the release tag
# Note: Standardizing to docker.notsosm.art registry
sed -i "s|image: euchre-camp/euchre-camp:[a-zA-Z0-9.-]*|image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${VERSION}|" ${COMPOSE_FILE}
sed -i "s|image: docker.notsosm.art/euchre-camp:[a-zA-Z0-9.-]*|image: docker.notsosm.art/euchre-camp:${VERSION}|" ${COMPOSE_FILE}
# Pull and restart the prod container
cd ${{ env.PROD_APPS_PATH }}
docker compose pull app
docker compose up -d app
# Wait for production site to be healthy
echo "Waiting for production site to be healthy..."
for i in {1..30}; do
if curl -sf https://euchre.notsosm.art/api/health > /dev/null 2>&1; then
echo "✅ Production successfully deployed with version ${VERSION}"
exit 0
fi
sleep 0.5
done
echo "❌ Production deployment failed"
docker compose logs app
exit 1