Skip to content

Commit

Permalink
added condition to run on beta and non-beta branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuchitra532 committed Sep 7, 2023
1 parent 82b1bca commit f37621f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f37621f

Please sign in to comment.