File tree 4 files changed +3
-11
lines changed
4 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 10
10
11
11
env :
12
12
ASANA_PAT : ${{ secrets.GH_ASANA_SECRET }}
13
+ GH_TOKEN : ${{ secrets.GT_DAXMOBILE }}
13
14
14
15
concurrency :
15
16
group : ${{ github.workflow }}-${{ github.ref }}
33
34
ruby-version : 2.7.2
34
35
bundler-cache : true
35
36
36
- - name : Set Git permissions
37
- uses : oleksiyrudenko/gha-git-credentials@v2-latest
38
- with :
39
- token : ' ${{ secrets.GT_DAXMOBILE }}'
40
-
41
37
- name : Use fastlane lane to create and push tagged release
42
38
id : create_git_tag
43
39
run : |
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- VERSION =5.218.1
1
+ VERSION =5.219.0
Original file line number Diff line number Diff line change 17
17
releaseNotesDefault = "Bug fixes and other improvements"
18
18
releaseNotesBodyHeader = "What's new:"
19
19
releaseNotesFileBody = "../app/version/release-notes"
20
- appVersionFilePath = "../app/version/version- properties"
20
+ appVersionFilePath = "../app/version/version. properties"
21
21
firebaseFilePath = "#{ ENV [ "HOME" ] } /jenkins_static/com.duckduckgo.mobile.android/ddg-upload-firebase.json"
22
22
releaseNotesLocales = [ "en-US" , "en-GB" , "en-CA" ]
23
23
releaseNotesMaxLength = 500
@@ -261,13 +261,11 @@ platform :android do
261
261
# Checkout all branches are available
262
262
sh ( "git fetch" )
263
263
sh ( "git checkout main" )
264
- sh ( "git branch" )
265
264
sh ( "git submodule update --init --recursive" )
266
265
sh ( "git reset --hard" )
267
266
sh ( "git clean -f -fxd" )
268
267
269
268
sh ( "git checkout develop" )
270
- sh ( "git branch" )
271
269
sh ( "git submodule update --init --recursive" )
272
270
sh ( "git reset --hard" )
273
271
sh ( "git clean -f -fxd" )
@@ -287,7 +285,6 @@ platform :android do
287
285
288
286
# Merge release branch into main and tag it
289
287
sh "git checkout main"
290
- sh "git pull origin main"
291
288
sh "git merge --no-ff release/#{ app_version } "
292
289
sh "git tag -a #{ app_version } -m #{ app_version } "
293
290
sh "git push origin main --tags"
You can’t perform that action at this time.
0 commit comments