Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

GitHub action that builds gem and publishes it to GitHub Packages

License

Notifications You must be signed in to change notification settings

acima-credit/publish-gem-to-github

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Release Ruby Gem to GitHub Packages

This action builds the gems for all .gemspec files in the projects root and uploads them to GitHub Packages (or optionally specify a subdirectory to build from).

Usage

Example minimal workflow using this action:

name: CI

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build and publish gem
      uses: jstastny/publish-gem-to-github@master
      with:
        token: ${{ secrets.GITHUB_TOKEN }}
        owner: jstastny

See example project using this action at https://github.com/jstastny/testgem.

Inputs

Name Description
token GitHub token that has write access to Packages. You can use secrets.GITHUB_TOKEN
owner Name of the user or organization account that owns the repository containing your project
working-directory Optional parameter of the directory where you wish to build your gemspecs in (defaults to root)

Versioning your gem

This action currently does not bump the gem's version when building it. It is up to you to do it (either manually or in a previous workflow step). If you try to release gem in the same version that already exists, the step will fail.

In case you want to ignore these types of failures, you can add:

continue-on-error: true

to the build step configuration.

About

GitHub action that builds gem and publishes it to GitHub Packages

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 80.2%
  • Dockerfile 19.8%