From 69c7db4b5eee1420bd0d2e495cbe002cfbe2a958 Mon Sep 17 00:00:00 2001 From: lixin <2967839139@qq.com> Date: Sat, 25 Jan 2025 13:25:44 +0800 Subject: [PATCH] ci(drone): Enable Docker image dry run for safer deployment - Added `dry_run: true` to Docker plugin configuration - Prevents actual image push during CI pipeline - Maintains existing tagging strategy with latest and commit SHA --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index a19a88b..d4ad297 100644 --- a/.drone.yml +++ b/.drone.yml @@ -29,6 +29,7 @@ steps: tags: - latest - ${DRONE_COMMIT_SHA:0:8} + dry_run: true volumes: - name: node_modules path: /drone/src/node_modules