Skip to content

Commit 8791179

Browse files
committed
fix(ci): correct gem asset path and ignore ci scope in release analysis
1 parent 13d8717 commit 8791179

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ lane :test do
55
end
66

77
lane :publish do
8-
is_releasable = analyze_commits(match: 'v*')
8+
is_releasable = analyze_commits(match: 'v*', ignore_scopes: ['ci'])
99

1010
unless is_releasable
1111
UI.message('Nothing to release')
@@ -35,6 +35,6 @@ lane :publish do
3535

3636
notes_file = "../RELEASE_NOTES.md"
3737
File.write(notes_file, notes)
38-
sh("gh release create #{tag} ./pkg/#{filename} --title '#{next_version}' --notes-file '#{notes_file}' --target master")
38+
sh("gh release create #{tag} ../pkg/#{filename} --title '#{next_version}' --notes-file '#{notes_file}' --target master")
3939
File.delete(notes_file)
4040
end

0 commit comments

Comments
 (0)