From 0e96d289333678b20a67d5eb83814aabed6bf43e Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Mon, 2 Feb 2026 05:50:00 +0530 Subject: [PATCH] Update GitHub Actions workflow to trigger on completion of version bump - Changed the workflow trigger from push events on the main branches to a workflow_run event that activates upon the completion of the "Version Bump" workflow. - This adjustment streamlines the CI/CD process by ensuring that packaging and publishing only occur after version updates are finalized. These changes enhance the automation and reliability of the deployment pipeline. --- .github/workflows/package-and-publish.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/package-and-publish.yml b/.github/workflows/package-and-publish.yml index bf52c5356..d994cf7ac 100644 --- a/.github/workflows/package-and-publish.yml +++ b/.github/workflows/package-and-publish.yml @@ -9,15 +9,12 @@ name: Package and publish on: - push: - branches: ["master","main"] - workflow_dispatch: - inputs: - forceRelease: - description: "Force release build even without publishing" - required: false - type: boolean - default: false + workflow_run: + workflows: ["Version Bump"] + types: + - completed + branches: + - main env: IS_ON_MASTER: ${{ github.ref == 'refs/heads/master' }}