Skip to content

Commit d4c0f29

Browse files
committed
Changed push to develop
1 parent c6f1013 commit d4c0f29

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/actions/upload-android/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ runs:
5959
if [[ ${{ inputs.trigger }} == "pr" ]]; then
6060
bundle exec fastlane android beta official:${{ inputs.type == 'official' }}
6161
fi
62-
if [[ ${{ inputs.trigger }} == "push" ]] && [[ ${{ inputs.type }} == 'experimental' ]]; then
62+
if [[ ${{ inputs.trigger }} == "develop" ]] && [[ ${{ inputs.type }} == 'experimental' ]]; then
6363
bundle exec fastlane android experimental_production
6464
fi
65-
if [[ ${{ inputs.trigger }} == "push" ]] && [[ ${{ inputs.type }} == 'official' ]]; then
65+
if [[ ${{ inputs.trigger }} == "develop" ]] && [[ ${{ inputs.type }} == 'official' ]]; then
6666
bundle exec fastlane android official_open_testing
6767
fi
6868

.github/workflows/build-develop.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
on:
77
push:
88
branches:
9-
- 'develop'
9+
- 'chore.gh-build-patch'
1010

1111
jobs:
1212
run-eslint-and-test:
@@ -22,7 +22,7 @@ jobs:
2222
secrets: inherit
2323
with:
2424
type: experimental
25-
trigger: push
25+
trigger: develop
2626

2727
android-build-official-store:
2828
name: Build Android Official
@@ -32,7 +32,7 @@ jobs:
3232
secrets: inherit
3333
with:
3434
type: official
35-
trigger: push
35+
trigger: develop
3636

3737
ios-build-experimental-store:
3838
name: Build iOS Experimental
@@ -42,7 +42,7 @@ jobs:
4242
secrets: inherit
4343
with:
4444
type: experimental
45-
trigger: push
45+
trigger: develop
4646

4747
ios-build-official-store:
4848
name: Build iOS Official
@@ -52,4 +52,4 @@ jobs:
5252
secrets: inherit
5353
with:
5454
type: official
55-
trigger: push
55+
trigger: develop

0 commit comments

Comments
 (0)