From 12cca1120cdace64e05fc53d658774254837885a Mon Sep 17 00:00:00 2001 From: Bharath Balan <62698609+bhabalan@users.noreply.github.com> Date: Tue, 25 Nov 2025 16:50:47 +0530 Subject: [PATCH 1/2] chore(tooling): remove dry run flag --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fc2c51ca5..2fe849769 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -142,9 +142,9 @@ jobs: path: "**/dist" key: dist-${{ env.rid }} - - name: Deploy Packages (Dry Run) + - name: Deploy Packages if: steps.check-changes.outputs.has_changes == 'true' - run: yarn workspaces foreach -W --dry-run --from '${{ needs.analyze-changes.outputs.yarn-recursive }}' --verbose run deploy:npm --access public --tag ${GITHUB_REF##*/} + run: yarn workspaces foreach -W --from '${{ needs.analyze-changes.outputs.yarn-recursive }}' --verbose run deploy:npm --access public --tag ${GITHUB_REF##*/} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From ae460932b483568664758b61c7b95ebabf926944 Mon Sep 17 00:00:00 2001 From: Bharath Balan <62698609+bhabalan@users.noreply.github.com> Date: Tue, 25 Nov 2025 16:56:32 +0530 Subject: [PATCH 2/2] chore(tooling): deploy should happen only on next branch --- .github/workflows/deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2fe849769..b25871a71 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,8 +4,7 @@ run-name: ${{ github.actor }} is running Deploy CD on: push: branches: # Allow list of deployable tags and branches. Note that all allow-listed branches cannot include any `/` characters - - ccwidgets - # - next uncomment when ready to deploy next + - next env: rid: ${{ github.run_id }}-${{ github.run_number }}