File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 55
55
- run : echo ${{steps.tag.outputs.tag}}
56
56
57
57
- run : |
58
- git describe --tags
59
58
git describe --tags --match='v*'
60
59
echo $KEYSTORE | base64 -d -i > /tmp/my-release-key.keystore
61
60
echo $SA_JSON_KEY | base64 -d -i > key_firebase.json
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ platform :android do
3
3
before_all do |lane , options |
4
4
ENV [ "APP_FLAVOR" ] = options [ :flavor ]
5
5
ENV [ "PROJECT_DIR" ] = "./"
6
+ tag_prefix = 'v*'
6
7
puts "Flavor environment #{ options [ :flavor ] } "
7
8
end
8
9
def on_error ( exception )
@@ -42,7 +43,7 @@ platform :android do
42
43
43
44
semver = ENV [ "SEMVER" ]
44
45
if semver
45
- isReleasable = analyze_commits ( match : 'v*' )
46
+ isReleasable = analyze_commits ( match : tag_prefix )
46
47
tag = "#{ lane_context [ SharedValues ::RELEASE_NEXT_VERSION ] } -#{ ENV [ "FLAVOR_TYPE" ] } "
47
48
puts "RELEASE_NEXT_VERSION #{ lane_context [ SharedValues ::RELEASE_NEXT_VERSION ] } -#{ ENV [ "FLAVOR_TYPE" ] } "
48
49
You can’t perform that action at this time.
0 commit comments