Invite request feature: - Public form to request an invite when INVITE_REQUEST_ENABLED=true - Stores requests in new invite_requests DB table - Emails admins on new request, emails requester on approve/deny - Admin panel tab to review, approve, and deny requests - Approval auto-creates invite code and sends signup link CI/CD pipeline: - Build & push Docker image to Gitea registry on release - Auto-deploy to staging with health check - Manual workflow_dispatch for production deploys Also includes client layout/sizing improvements for card grid and opponent spacing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
name: Build & Deploy Staging
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
env:
|
|
IMAGE: git.adlee.work/alee/golfgame
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Log in to Gitea Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.adlee.work
|
|
username: ${{ secrets.REGISTRY_USER }}
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
- name: Build and push image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: |
|
|
${{ env.IMAGE }}:${{ github.ref_name }}
|
|
${{ env.IMAGE }}:latest
|
|
|
|
deploy:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Deploy to staging
|
|
uses: appleboy/ssh-action@v1
|
|
with:
|
|
host: ${{ secrets.STAGING_HOST }}
|
|
username: root
|
|
key: ${{ secrets.DEPLOY_SSH_KEY }}
|
|
envs: IMAGE
|
|
script: |
|
|
cd /opt/golfgame
|
|
|
|
# Pull the pre-built image
|
|
docker login git.adlee.work -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_TOKEN }}
|
|
docker pull $IMAGE:${{ github.ref_name }}
|
|
|
|
# Tag it so compose uses it
|
|
docker tag $IMAGE:${{ github.ref_name }} golfgame-app:latest
|
|
|
|
# Update code (for compose file / env changes)
|
|
git fetch origin && git checkout ${{ github.ref_name }}
|
|
|
|
# Restart app (no --build, image is pre-built)
|
|
docker compose -f docker-compose.staging.yml up -d app
|
|
|
|
# Wait for healthy
|
|
echo "Waiting for health check..."
|
|
for i in $(seq 1 30); do
|
|
if docker compose -f docker-compose.staging.yml ps app | grep -q "healthy"; then
|
|
echo "Staging deploy successful — ${{ github.ref_name }}"
|
|
exit 0
|
|
fi
|
|
sleep 2
|
|
done
|
|
echo "WARNING: app not healthy after 60s"
|
|
docker compose -f docker-compose.staging.yml logs --tail=20 app
|
|
exit 1
|