We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13d8717 commit 8791179Copy full SHA for 8791179
1 file changed
fastlane/Fastfile
@@ -5,7 +5,7 @@ lane :test do
5
end
6
7
lane :publish do
8
- is_releasable = analyze_commits(match: 'v*')
+ is_releasable = analyze_commits(match: 'v*', ignore_scopes: ['ci'])
9
10
unless is_releasable
11
UI.message('Nothing to release')
@@ -35,6 +35,6 @@ lane :publish do
35
36
notes_file = "../RELEASE_NOTES.md"
37
File.write(notes_file, notes)
38
- sh("gh release create #{tag} ./pkg/#{filename} --title '#{next_version}' --notes-file '#{notes_file}' --target master")
+ sh("gh release create #{tag} ../pkg/#{filename} --title '#{next_version}' --notes-file '#{notes_file}' --target master")
39
File.delete(notes_file)
40
0 commit comments