Skip to content

Commit f624f80

Browse files
authored
Fix release task to not commit ignored Gemfile.lock (#196)
1 parent 2ba5e8d commit f624f80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rakelib/release.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ task :release, %i[gem_version dry_run] do |_t, args|
5050
sh_in_dir(gem_root, "bundle install")
5151

5252
unless is_dry_run
53-
# Commit the version bump and Gemfile.lock update
54-
sh_in_dir(gem_root, "git add lib/cypress_on_rails/version.rb Gemfile.lock")
53+
# Commit the version bump
54+
sh_in_dir(gem_root, "git add lib/cypress_on_rails/version.rb")
5555
sh_in_dir(gem_root, "git commit -m \"Release v#{actual_version}\"")
5656

5757
# Tag the release

0 commit comments

Comments
 (0)