Skip to content

Commit 84ea346

Browse files
committed
Changes
1 parent 7eb876e commit 84ea346

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/build-android.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@ on:
88
required: true
99

1010
jobs:
11+
build-hold:
12+
name: Hold
13+
runs-on: ubuntu-latest
14+
environment: experimental_android_build
15+
1116
build-android:
1217
name: Build
1318
runs-on: ubuntu-latest
14-
environment: experimental_android_build
19+
needs: build-hold
1520
steps:
1621
- name: Validate type input
1722
run: |
@@ -37,10 +42,16 @@ jobs:
3742
KEYSTORE_EXPERIMENTAL_ALIAS: ${{ secrets.KEYSTORE_EXPERIMENTAL_ALIAS }}
3843
GOOGLE_SERVICES_ANDROID: ${{ secrets.GOOGLE_SERVICES_ANDROID }}
3944

45+
upload-hold:
46+
name: Hold
47+
runs-on: ubuntu-latest
48+
environment: experimental_android_build
49+
needs: build-android
50+
4051
upload-android:
4152
name: Upload
4253
runs-on: ubuntu-latest
43-
needs: build-android
54+
needs: [build-android, upload-hold]
4455
steps:
4556
- name: Validate type input
4657
run: |

0 commit comments

Comments
 (0)