Skip to content

Commit

Permalink
Merge pull request #2045 from IDEMSInternational/fix/android-release-…
Browse files Browse the repository at this point in the history
…action

fix: android release action
  • Loading branch information
chrismclarke authored Aug 21, 2023
2 parents bb78130 + 45ec8e8 commit 71644c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android-build-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
uses: ./.github/workflows/android-build.yml
secrets: inherit
with:
branch: ${{github.event.inputs.build_branch}}
branch: ${{github.event.inputs.branch}}
7 changes: 2 additions & 5 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
# Configuration
##################################################################################
env:
# Hardcoded default (testing purposes)
BUILD_BRANCH_DEFAULT: master
DEPLOYMENT_NAME_DEFAULT: plh_global
# Secrets
GOOGLE_SERVICES_JSON: ${{secrets.GOOGLE_SERVICES_JSON}}
SIGNING_KEY: ${{secrets.SIGNING_KEY}}
Expand Down Expand Up @@ -66,7 +63,7 @@ jobs:
- uses: actions/checkout@v3
with:
lfs: true
ref: ${{ inputs.BUILD_BRANCH }}
ref: ${{ inputs.branch }}
#############################################################################
# Configure
# Setup node same way as web build to allow calling `npx cap sync` command
Expand Down Expand Up @@ -152,5 +149,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: release_bundle
path: android/app/build/outputs/bundle/release/app-release.aab
path: ${{steps.sign_aab.outputs.signedReleaseFile}}

0 comments on commit 71644c6

Please sign in to comment.