Files
nuzlocke-tracker/.github/workflows/deploy.yml
Julian Tabel 00a5a78a44
All checks were successful
CI / backend-lint (pull_request) Successful in 9s
CI / actions-lint (pull_request) Successful in 15s
CI / frontend-lint (pull_request) Successful in 21s
Fix CI workflow: actionlint install, zizmor, and permissions
- Use actionlint's official download script instead of hardcoded URL
  missing the version number in the asset filename
- Use pipx run for zizmor to avoid PATH and PEP 668 issues
- Add explicit permissions: contents: read to both workflows to
  satisfy zizmor's excessive-permissions audit

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 19:36:30 +01:00

48 lines
1.8 KiB
YAML

name: Deploy
on:
workflow_dispatch:
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Login to Gitea registry
run: echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login gitea.nerdboden.de -u "${{ secrets.REGISTRY_USERNAME }}" --password-stdin
- name: Build and push API image
run: |
docker build --platform linux/amd64 \
-t gitea.nerdboden.de/thefurya/nuzlocke-tracker-api:latest \
-f backend/Dockerfile.prod ./backend
docker push gitea.nerdboden.de/thefurya/nuzlocke-tracker-api:latest
- name: Build and push frontend image
run: |
docker build --platform linux/amd64 \
-t gitea.nerdboden.de/thefurya/nuzlocke-tracker-frontend:latest \
-f frontend/Dockerfile.prod ./frontend
docker push gitea.nerdboden.de/thefurya/nuzlocke-tracker-frontend:latest
- name: Deploy to Unraid
run: |
mkdir -p ~/.ssh
echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/deploy_key
chmod 600 ~/.ssh/deploy_key
SSH_CMD="ssh -o StrictHostKeyChecking=no -i ~/.ssh/deploy_key root@192.168.1.10"
SCP_CMD="scp -o StrictHostKeyChecking=no -i ~/.ssh/deploy_key"
DEPLOY_DIR="/mnt/user/appdata/nuzlocke-tracker"
$SCP_CMD docker-compose.prod.yml "root@192.168.1.10:${DEPLOY_DIR}/docker-compose.yml"
$SCP_CMD backup.sh "root@192.168.1.10:${DEPLOY_DIR}/backup.sh"
$SSH_CMD "chmod +x '${DEPLOY_DIR}/backup.sh'"
$SSH_CMD "cd '${DEPLOY_DIR}' && docker compose pull && docker compose up -d"