-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task/Issue URL: https://app.asana.com/0/inbox/1157893581871899/1208764131137352/1208764131137354 ### Description Fix duplicate ids and fastlane config for deployment --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1208764131137352
- Loading branch information
Showing
2 changed files
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ jobs: | |
destination-path: $HOME/jenkins_static/com.duckduckgo.mobile.android/ | ||
|
||
- name: Assemble the bundle | ||
run: ./gradleW bundleRelease -PuseUploadSigning | ||
run: ./gradlew bundleRelease -PuseUploadSigning | ||
|
||
- name: Capture App Bundle Path | ||
id: capture_output | ||
|
@@ -72,21 +72,15 @@ jobs: | |
echo "bundle_path=$output" >> $GITHUB_OUTPUT | ||
- name: Upload bundle to Play Store | ||
id: create_app_bundle | ||
id: upload_bundle_play | ||
run: | | ||
bundle exec fastlane deploy_playstore | ||
- name: Upload Universal APK to Github | ||
id: create_app_bundle | ||
id: upload_bundle_github | ||
run: | | ||
bundle exec fastlane deploy_github | ||
- name: Upload APK as artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: duckduckgo-${{ steps.generate_version_name.outputs.version }}.apk | ||
path: duckduckgo.apk | ||
|
||
- name: Create Asana task when workflow failed | ||
if: ${{ failure() }} | ||
uses: duckduckgo/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters