Merge pull request #88 from bastelfreak/rel120 #3
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: Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'voxpupuli' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ruby 3.0 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
bundler: 'none' | |
env: | |
BUNDLE_WITHOUT: release:development:rubocop | |
- name: Build gem | |
run: gem build --strict --verbose *.gemspec | |
- name: Publish gem to rubygems.org | |
run: gem push *.gem | |
env: | |
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}' | |
- name: Setup GitHub packages access | |
run: | | |
mkdir -p ~/.gem | |
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials | |
chmod 0600 ~/.gem/credentials | |
- name: Publish gem to GitHub packages | |
run: gem push --key github --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem |