mirror of https://github.com/tooot-app/app
Try to fix fastlane
This commit is contained in:
parent
d80d864bc5
commit
e14d679f33
|
@ -29,6 +29,7 @@ jobs:
|
|||
- name: -- Step 4 -- Install node dependencies
|
||||
run: yarn install
|
||||
- name: -- Step 5 -- Install native dependencies
|
||||
if: github.ref != 'refs/heads/main'
|
||||
run: npx pod-install
|
||||
- name: -- Step 6 -- Install ruby dependencies
|
||||
run: bundle install
|
||||
|
|
|
@ -57,7 +57,7 @@ private_lane :github_release do |options|
|
|||
description: "No changelog provided",
|
||||
commitish: git_branch,
|
||||
is_prerelease: options[:prerelease]
|
||||
upload_assets: [lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH]]
|
||||
upload_assets: ["#{File.expand_path('..', Dir.pwd)}/tooot-#{GITHUB_RELEASE}.apk"]
|
||||
)
|
||||
end
|
||||
|
||||
|
@ -141,6 +141,7 @@ private_lane :build_android do
|
|||
"android.injected.signing.key.password" => ENV["ANDROID_KEYSTORE_KEY_PASSWORD"],
|
||||
}
|
||||
)
|
||||
sh "mv #{lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH]} #{File.expand_path('..', Dir.pwd)}/tooot-#{GITHUB_RELEASE}.apk"
|
||||
when "release"
|
||||
else
|
||||
if !is_ci
|
||||
|
|
Loading…
Reference in New Issue