Skip to content

Commit

Permalink
Bundle install before bundle exec
Browse files Browse the repository at this point in the history
  • Loading branch information
tadaskay committed Oct 23, 2020
1 parent 0864cbf commit 6ba15d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ buildDebug:
changes:
- "./fastlane/android_version_code"
before_script:
- bundle install
- echo "$GOOGLE_SERVICES_VALUE" | base64 --decode > "$GOOGLE_SERVICES_PATH"
script:
- bundle exec fastlane buildDebug
Expand All @@ -30,6 +31,7 @@ testDebug:
dependencies:
- buildDebug
before_script:
- bundle install
- echo "$GOOGLE_SERVICES_VALUE" | base64 --decode > "$GOOGLE_SERVICES_PATH"
script:
- bundle exec fastlane test
Expand All @@ -40,6 +42,7 @@ publishInternal:
only: [tags]
tags: [docker]
before_script:
- bundle install
- echo "$FASTLANE_ANDROID_SIGNING_FILE_VALUE" | base64 --decode > "$FASTLANE_ANDROID_SIGNING_FILE_PATH"
- echo "$FASTLANE_ANDROID_SECRET_JSON_VALUE" | base64 --decode > "$FASTLANE_ANDROID_SECRET_JSON_PATH"
- echo "$GOOGLE_SERVICES_VALUE" | base64 --decode > "$GOOGLE_SERVICES_PATH"
Expand Down

0 comments on commit 6ba15d2

Please sign in to comment.