Commit 16a947e 1 parent 0e35d75 commit 16a947e Copy full SHA for 16a947e
File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 63
63
destination-path : $HOME/jenkins_static/com.duckduckgo.mobile.android/
64
64
65
65
- name : Assemble the bundle
66
- run : ./gradleW bundleRelease -PuseUploadSigning
66
+ run : ./gradlew bundleRelease -PuseUploadSigning
67
67
68
68
- name : Capture App Bundle Path
69
69
id : capture_output
@@ -72,21 +72,15 @@ jobs:
72
72
echo "bundle_path=$output" >> $GITHUB_OUTPUT
73
73
74
74
- name : Upload bundle to Play Store
75
- id : create_app_bundle
75
+ id : upload_bundle_play
76
76
run : |
77
77
bundle exec fastlane deploy_playstore
78
78
79
79
- name : Upload Universal APK to Github
80
- id : create_app_bundle
80
+ id : upload_bundle_github
81
81
run : |
82
82
bundle exec fastlane deploy_github
83
83
84
- - name : Upload APK as artifact
85
- uses : actions/upload-artifact@v4
86
- with :
87
- name : duckduckgo-${{ steps.generate_version_name.outputs.version }}.apk
88
- path : duckduckgo.apk
89
-
90
84
- name : Create Asana task when workflow failed
91
85
if : ${{ failure() }}
92
86
uses :
duckduckgo/[email protected]
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ platform :android do
209
209
version = props [ "VERSION" ]
210
210
releaseNotes = release_notes_github ( )
211
211
apkPath = "app/build/outputs/apk/play/release/duckduckgo-#{ version } -play-release.apk"
212
- token = ENV [ "GITHUB_UPLOAD_TOKEN " ]
212
+ token = ENV [ "GH_TOKEN " ]
213
213
214
214
UI . message ( "Upload new app version to GitHub\n Version: #{ version } \n Release Notes:\n =====\n #{ releaseNotes } \n =====\n " )
215
215
You can’t perform that action at this time.
0 commit comments