Skip to content

Commit 49b6031

Browse files
iartemievjpignata
andauthored
ci: fastlane release lane fixes (#603)
Co-authored-by: John Pignata <[email protected]>
1 parent e7466c9 commit 49b6031

File tree

5 files changed

+40
-7
lines changed

5 files changed

+40
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ awsconfiguration.json
4848
amplifyconfiguration.json
4949
credentials-mc.json
5050

51+
fastlane/report.xml

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Changelog
22

3-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4-
53
## 1.0.3 (2020-06-26)
64

75
### Bug Fixes

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
GIT
22
remote: https://github.com/aws-amplify/amplify-ci-support
3-
revision: 26e84a769abecbdd6687829cc74d627ec1c6ba4c
3+
revision: 96a3d15ad39b56bce95b10bc97cbfea08d44c139
44
branch: master
55
glob: src/fastlane/release_actions/*.gemspec
66
specs:
7-
fastlane-plugin-release_actions (1.0.0)
7+
fastlane-plugin-release_actions (1.0.2)
88

99
GEM
1010
remote: https://rubygems.org/

fastlane/Fastfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ platform :ios do
7373

7474
commit_message = "chore: release #{next_version} [skip ci]"
7575
sh('git', 'commit', '-am', commit_message)
76-
sh('git', 'push', 'origin')
77-
76+
sh('git', 'push', 'origin', 'release')
77+
sh('git', 'push', 'origin', 'release:main')
7878
end
79-
79+
8080
desc "Tag in git and push to GitHub"
8181
private_lane :add_tag do |options|
8282
next_version = options[:version]

fastlane/README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
fastlane documentation
2+
================
3+
# Installation
4+
5+
Make sure you have the latest version of the Xcode command line tools installed:
6+
7+
```
8+
xcode-select --install
9+
```
10+
11+
Install _fastlane_ using
12+
```
13+
[sudo] gem install fastlane -NV
14+
```
15+
or alternatively using `brew cask install fastlane`
16+
17+
# Available Actions
18+
## iOS
19+
### ios unstable
20+
```
21+
fastlane ios unstable
22+
```
23+
Create a pre-release version by pushing a tag to GitHub, and pushing pods to CocoaPods
24+
### ios release
25+
```
26+
fastlane ios release
27+
```
28+
Create a release version by building and committing a changelog, pushing a tag to GitHub, and pushing pods to CocoaPods
29+
30+
----
31+
32+
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
33+
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
34+
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 commit comments

Comments
 (0)