From f37621f23c732339a6ea75feb9ee89869cd00d8e Mon Sep 17 00:00:00 2001 From: suchitra Date: Thu, 7 Sep 2023 09:21:27 +0100 Subject: [PATCH] added condition to run on beta and non-beta branch --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3682f364f..c73399695 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,12 +31,14 @@ jobs: token: ${{ secrets.GH_TOKEN }} - name: Beta Builds if: github.event.pull_request.base.ref == 'develop' - run: build_robohelp_gh.bat -beta %GITHUB_WORKSPACE%\output + # run: build_robohelp_gh.bat -beta %GITHUB_WORKSPACE%\output + run: echo "this is beta build" shell: cmd working-directory: Manual - name: Builds if: github.event.pull_request.base.ref == 'main' - run: build_robohelp_gh.bat %GITHUB_WORKSPACE%\output + # run: build_robohelp_gh.bat %GITHUB_WORKSPACE%\output + run: echo "this is non-beta build" shell: cmd working-directory: Manual - name: Upload robohelp zip file