更新 ci.yml: 添加步骤以关闭和移除 app 容器,确保 CI 流程的清理工作。

This commit is contained in:
2025-07-19 20:31:18 +08:00
parent 05763b6b5e
commit 660cb1d9ad

View File

@ -7,6 +7,11 @@ jobs:
build:
runs-on: ubuntu-latest-2
steps:
- name: 关闭 app 容器
run: |
docker compose stop app || true
docker compose rm -f app || true
- name: 克隆本地 checkout action
run: |
git clone http://114.67.155.184:3000/niyyzf/checkout.git ./.actions/checkout