From a1027b9acd1e34fe963418001d0b2d477aab4066 Mon Sep 17 00:00:00 2001 From: "circleci-app[bot]" <127350680+circleci-app[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 09:45:35 +0000 Subject: [PATCH] CircleCI Commit --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d433d30..45c3e4e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,9 +15,27 @@ jobs: - image: cimg/base:current steps: - checkout + - run: + name: Plan deployment + command: | + circleci run release plan "${CIRCLE_JOB}" \ + --environment-name="default" \ + --component-name="${CIRCLE_PROJECT_REPONAME}" \ + --target-version="1.0.${CIRCLE_BUILD_NUM}-${CIRCLE_SHA1:0:7}" - run: name: Deploy command: echo "Deploying application..." + - run: + name: Update deployment status to running + command: circleci run release update "${CIRCLE_JOB}" --status=RUNNING + - run: + name: Update deployment status to success + command: circleci run release update "${CIRCLE_JOB}" --status=SUCCESS + when: on_success + - run: + name: Update deployment status to failed + command: circleci run release update "${CIRCLE_JOB}" --status=FAILED + when: on_fail workflows: say-hello-workflow: