Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
f50b0c05
Commit
f50b0c05
authored
Feb 28, 2019
by
Jason Lenny
Committed by
Nick Thomas
Feb 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add iOS-fastlane template for .gitlab-ci.yml
parent
716412d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
changelogs/unreleased/52877-ios-publishing-blog-post-and-gitlab-ci-yml-template.yml
...7-ios-publishing-blog-post-and-gitlab-ci-yml-template.yml
+5
-0
lib/gitlab/ci/templates/iOS-Fastlane.gitlab-ci.yml
lib/gitlab/ci/templates/iOS-Fastlane.gitlab-ci.yml
+28
-0
No files found.
changelogs/unreleased/52877-ios-publishing-blog-post-and-gitlab-ci-yml-template.yml
0 → 100644
View file @
f50b0c05
---
title
:
Add iOS-fastlane template for .gitlab-ci.yml
merge_request
:
25395
author
:
type
:
changed
lib/gitlab/ci/templates/iOS-Fastlane.gitlab-ci.yml
0 → 100644
View file @
f50b0c05
# This is a very simple template that mainly relies on FastLane to build and distribute your app.
# Read more about how to use this template on the blog post https://about.gitlab.com/2019/03/06/ios-publishing-with-gitlab-and-fastlane/
# You will also need fastlane and signing configuration for this to work, along with a MacOS runner.
# These details are provided in the blog post.
# Note that when you're using the shell executor for MacOS builds, the
# build and tests run as the identity of the runner logged in user, directly on
# the build host. This is less secure than using container executors, so please
# take a look at our security implications documentation at
# https://docs.gitlab.com/runner/security/#usage-of-shell-executor for additional
# detail on what to keep in mind in this scenario.
stages
:
-
build
variables
:
LC_ALL
:
"
en_US.UTF-8"
LANG
:
"
en_US.UTF-8"
GIT_STRATEGY
:
clone
build
:
stage
:
build
script
:
-
bundle install
-
bundle exec fastlane build
artifacts
:
paths
:
-
./*.ipa
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment