summaryrefslogtreecommitdiff
path: root/fastlane
diff options
context:
space:
mode:
authorjkoan <jkoan@users.noreply.github.com>2021-10-04 20:44:44 +0200
committerjkoan <jkoan@users.noreply.github.com>2023-01-11 07:50:27 +0100
commitd5bf05f72f215a34f601e3064b8f50f4b063bc5d (patch)
tree56f02afb69467e750fff939251d484dcdfa6b5ca /fastlane
parent216ccc8bfcae6c0fa6b284024214917e6c8d376b (diff)
downloadnavit-d5bf05f72f215a34f601e3064b8f50f4b063bc5d.tar.gz
refactor:build:Introduce github actions builds
This is relevant as currenly RPs from Users are not build on CircleCI which is quite useless to have PRs not beeing able to be tested reliably
Diffstat (limited to 'fastlane')
-rw-r--r--fastlane/Fastfile9
1 files changed, 8 insertions, 1 deletions
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index fd4044762..b91de985f 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -25,8 +25,13 @@ end
platform :android do
desc "Description of what the lane does"
+ lane :github_actions do
+ # Here we can add other things that Github Actions should do
+ build
+ end
lane :circleci do
- # Here we can add other things that circleci should do
+ # Here we can add other things that CircleCI should do
+ build
playstore
end
lane :playstore do
@@ -36,6 +41,8 @@ platform :android do
task: 'assemble',
build_type: 'Release'
)
+ end
+ lane :build do
isOnMasterBranch = currentBranch() == "master"
isOnMasterBranch = false # Workarount do not push to google as its curently broken
if isOnMasterBranch