ci: restore deploy job, gated on vars.DEPLOY_PATH
Build Docker Image / build (push) Successful in 14m11s
Build Docker Image / deploy (push) Successful in 1m16s

Re-add the deploy job dropped during open-source cleanup. The job pulls
the just-built image and restarts the compose stack in vars.DEPLOY_PATH.

The gate `if: vars.DEPLOY_PATH != ''` keeps the workflow safe for
public mirroring: no path appears in the YAML, and any fork without
DEPLOY_PATH set will silently skip the deploy step.
This commit is contained in:
2026-05-18 00:46:49 +08:00
parent 1ccddae692
commit cb3e99aec2
+24
View File
@@ -94,3 +94,27 @@ jobs:
echo "| Commit (full) | \`${{ steps.meta.outputs.full_sha }}\` |"
echo "| 镜像 | \`${{ steps.meta.outputs.image_ref }}:${{ steps.meta.outputs.image_tag }}\` + \`:latest\` |"
} >> "$GITHUB_STEP_SUMMARY"
deploy:
# 仅在 build 成功 + 配置了 vars.DEPLOY_PATH 时运行。
# DEPLOY_PATH 留空(例如开源镜像里的 GitHub)就跳过——不向公开仓库暴露 NAS 路径。
needs: build
if: ${{ vars.DEPLOY_PATH != '' }}
runs-on: ubuntu-latest
steps:
- name: Login to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.REGISTRY }}
username: ${{ gitea.actor }}
password: ${{ secrets.PACKAGES_TOKEN }}
- name: Pull and restart
run: |
set -e
cd "${{ vars.DEPLOY_PATH }}"
docker compose pull
docker compose up -d
sleep 3
docker compose ps
docker compose logs --tail=30