Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dashwallet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ master ]
pull_request:
branches: [ master, feature-*, bugfix-* ]
branches: [ master, feature-*, bugfix-*, feat/*, fix/* ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ktlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Code format check

on:
pull_request:
branches: [ master, feature-*, bugfix-*, dashpay-* ]
branches: [ master, feature-*, bugfix-*, feat/*, fix/* ]

jobs:
check:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual_distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
taskID:
description: 'Task ID'
required: true
default: 'NMA-'
default: 'MO-'
flavor:
description: 'Flavor'
required: true
default: 'staging'
default: '_testNet3'
type:
description: 'Type'
required: true
Expand Down
7 changes: 6 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ platform :android do
UI.user_error!("Missing apk. Run 'publish' lane to build and upload")
end

supply(apk: filename, track: 'internal')
mapping = "#{ENV['PWD']}/wallet/build/outputs/mapping/prodRelease/mapping.txt"
if !File.exist? "#{mapping}"
UI.user_error!("Missing mapping.txt. Run 'publish' lane to build and upload")
end

supply(apk: filename, mapping: mapping, track: 'internal')
end

desc "Promote to production track with 0.2 rollout by default"
Expand Down
Loading