Skip to content

Commit

Permalink
deploy release
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo <[email protected]>
  • Loading branch information
Balcan committed May 20, 2024
1 parent 60d9e08 commit 652a9ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
track: alpha
whatsNewDirectory: /whatsnew

if: ${{ inputs.github_release && inputs.is_patch }}
if: ${{ (inputs.github_release == true) && (inputs.is_patch == true) }}
- name: Github Patch Release
uses: ncipollo/release-action@v1
with:
Expand All @@ -84,7 +84,7 @@ jobs:
tag: ${{ inputs.release_tag_name }}
artifacts: ${{ env.main_project_module }}/build/outputs/apk/dhis/release/dhis2-v${{ steps.read-version.outputs.vName }}-dhis-release.apk,${{ env.main_project_module }}/build/outputs/apk/dhis/release/dhis2-v${{ steps.read-version.outputs.vName }}-dhisPlayServices-release.apk,${{ env.main_project_module }}/build/outputs/apk/dhis/debug/dhis2-v${{ steps.read-version.outputs.vName }}-dhis-debug.apk

if: !${{ inputs.github_release && inputs.is_patch }}
if: ${{ (inputs.github_release == true) && (inputs.is_patch == false) }}
- name: Github New Release
uses: ncipollo/release-action@v1
with:
Expand Down

0 comments on commit 652a9ac

Please sign in to comment.