Skip to content

Commit

Permalink
feat: add android github action split input
Browse files Browse the repository at this point in the history
  • Loading branch information
hellohublot committed Dec 26, 2023
1 parent 9b7e904 commit 51bee86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/release-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
types:
- completed
workflow_dispatch:
inputs:
is-split-bundle:
description: 'Should it run as split-bundle? \(keep it null if you don't need it\)'
required: false
default: ''
jobs:
release-android:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -87,6 +92,7 @@ jobs:
run: |
echo "COVALENT_KEY=${{ env.COVALENT_KEY }}" >> .env.expo
echo "GITHUB_SHA=${{ env.GITHUB_SHA }}" >> .env.expo
echo "SPLIT_BUNDLE=${{ inputs.is-split-bundle }}" >> .env.expo
- name: Build on EAS And Submit
if: ${{ github.event.workflow_run }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:
inputs:
is-split-bundle:
description: 'Should it run as split-bundle? (keep it null if you don't need it)'
description: 'Should it run as split-bundle? \(keep it null if you don't need it\)'
required: false
default: ''
jobs:
Expand Down

0 comments on commit 51bee86

Please sign in to comment.