https://github.com/babbel/publish-gem
Publishes RubyGem to GitHub Packages
https://github.com/babbel/publish-gem
actions
Last synced: 4 months ago
JSON representation
Publishes RubyGem to GitHub Packages
- Host: GitHub
- URL: https://github.com/babbel/publish-gem
- Owner: babbel
- License: mit
- Created: 2020-12-30T14:12:54.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-01-07T15:29:17.000Z (over 1 year ago)
- Last Synced: 2025-10-13T01:31:46.578Z (8 months ago)
- Topics: actions
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 37
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action: `babbel/publish-gem`
Publishes RubyGem to GitHub Packages.
## Usage
```
steps:
- uses: babbel/publish-gem
```
You can also specify a `gemspec-file` input if you have multiple gemspec files:
```
steps:
- uses: babbel/publish-gem
with:
gemspec-file: example.gemspec
```
If the gem is not in the current directory, you can override the working directory:
```
steps:
- uses: babbel/publish-gem
with:
working-directory: packages/gemname
```