Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 326e89b

Browse files
committed
Fix incorrect quotes
1 parent 39aa538 commit 326e89b

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed

Diff for: fastlane/Fastfile

+6-16
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
fastlane_version "1.86.0"
22

3-
desc "Tags a new version of R.swift.Library and releases it to cocoapods"
4-
desc " * GITHUB_API_TOKEN must be available in environment, create one on https://github.com/settings/tokens"
5-
desc "This lane should be run from your local machine, and will push a tag to the remote when finished."
6-
desc " * Verifies the git branch is clean"
7-
desc " * Ensures the lane is running on the master branch"
8-
desc " * Pulls the remote to verify the latest the branch is up to date"
9-
desc " * Asks for the new version number"
10-
desc " * Commit, tag and release library to cocoapods"
11-
desc "####Options"
12-
desc " * **`allow_dirty_branch`**: Allows the git branch to be dirty before continuing. Defaults to false"
133
lane :release do |options|
144
ensure_git_branch(branch: "master")
155

@@ -62,12 +52,12 @@ lane :release do |options|
6252
push_to_git_remote
6353

6454
af_create_github_release(
65-
owner: 'mac-cain13',
66-
repository: 'r.swift.library',
67-
tag_name: 'v#{newVersion}',
68-
target_commitish: 'master',
69-
name: '#{newVersion}',
70-
body: '#{changelog}',
55+
owner: "mac-cain13",
56+
repository: "r.swift.library",
57+
tag_name: "v#{newVersion}",
58+
target_commitish: "master",
59+
name: "#{newVersion}",
60+
body: "#{changelog}",
7161
prerelease: isPrerelease
7262
)
7363

0 commit comments

Comments
 (0)