We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e158a86 commit 64247abCopy full SHA for 64247ab
.github/workflows/deploy.yml
@@ -5,10 +5,13 @@ on:
5
types: [ closed ]
6
branches:
7
- develop
8
+ push:
9
+ branches:
10
+ - 'release/*'
11
12
jobs:
- update:
- if: github.event.pull_request.merged == true
13
+ update_on_merge:
14
+ if: github.event.pull_request.merged == true || (github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release/'))
15
runs-on: ubuntu-latest
16
steps:
17
- name: trigger build & send to FAD
gradle.properties
@@ -21,4 +21,4 @@ android.enableJetifier=true
21
kotlin.code.style=official
22
23
# SDK version property
24
-SDK_VERSION_NAME=2.7.0-rc
+SDK_VERSION_NAME=2.7.1-rc
0 commit comments