https://github.com/bitbrain/gemspec-fetch
💎 Github Action that fetches metadata from any .gemspec file
https://github.com/bitbrain/gemspec-fetch
Last synced: 12 months ago
JSON representation
💎 Github Action that fetches metadata from any .gemspec file
- Host: GitHub
- URL: https://github.com/bitbrain/gemspec-fetch
- Owner: bitbrain
- License: mit
- Created: 2021-10-04T19:45:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-04T19:52:17.000Z (over 4 years ago)
- Last Synced: 2025-02-13T23:35:48.461Z (about 1 year ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 💎 Gemspec Fetch
Github Action that fetches metadata from any .gemspec file
## Usage
```yml
- name: 💎 Extract gemspec info
id: gemspec_fetch
uses: bitbrain/gemspec-fetch@1.0
with:
specfile: rubygem.gemspec
```
and then access the following outputs:
```
${{ steps.gemspec_fetch.outputs.name }}
${{ steps.gemspec_fetch.outputs.version }}
${{ steps.gemspec_fetch.outputs.description }}
${{ steps.gemspec_fetch.outputs.homepage }}
${{ steps.gemspec_fetch.outputs.summary }}
```