Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the requirement of having a Rakefile #5

Closed
wants to merge 1 commit into from
Closed

Remove the requirement of having a Rakefile #5

wants to merge 1 commit into from

Conversation

ntkme
Copy link

@ntkme ntkme commented Dec 31, 2023

Currently this action runs bundle exec rake release, which has a few limitations:

  • It requires all dependencies to be installed because of bundle exec.
  • It requires a Rakefile to exist and the file has to require bundler/gem_tasks.

This PR update the command to rake -f -r bundler/gem_tasks release, which works without any dependencies or Rakefile.

The -f without a filename indicate we don't want to source any Rakefile, -r bundler/gem_tasks loads the task for release.

@ntkme ntkme closed this Jan 2, 2024
@ntkme ntkme deleted the no-bundle branch January 2, 2024 00:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support releasing without rake
1 participant