Merge pull request #1274 from puppetlabs/0.122.3-release #77
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gem release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build gem | |
uses: scarhand/actions-ruby@master | |
with: | |
args: build *.gemspec | |
- name: Publish gem | |
uses: scarhand/actions-ruby@master | |
env: | |
RUBYGEMS_AUTH_TOKEN: ${{ secrets.RUBYGEMS_AUTH_TOKEN }} | |
with: | |
args: push *.gem | |