An open API service indexing awesome lists of open source software.

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

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

```