Skip to content

actionshub/publish-gem-to-github

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

publish-gem-to-github

Release your Ruby Gem to GitHub Packages

This Action has been heavily influenced by Jstastny's Publish-Gem-to-Github Action

Usage

jobs:
  release:
    runs-on: ubuntu-latest
      - name: Checkout
        uses: actions/checkout@v2

      - name: Build and publish to GitHub Package
        uses: actionshub/publish-gem-to-github@master
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          owner: ${{ secrets.OWNER }}