Release Ruby 0.9.1 #16
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 Ruby | |
on: | |
push: | |
tags: | |
- 'ruby-v*' # Push events to matching ruby-v*, i.e. ruby-v1.0, ruby-v2.1.3 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
working-directory: ./ruby | |
- run: bundle install | |
working-directory: ./ruby | |
- run: bundle exec rake | |
working-directory: ./ruby | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
working-directory: ./ruby | |
- name: Install and test | |
run: | | |
bundle install | |
bundle exec rake | |
working-directory: ./ruby | |
- name: Configure credentials | |
run: | | |
mkdir -p $HOME/.gem | |
touch $HOME/.gem/credentials | |
chmod 0600 $HOME/.gem/credentials | |
printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}" > $HOME/.gem/credentials | |
env: | |
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} | |
- name: Build gem | |
run: | | |
bundle exec rake build | |
working-directory: ./ruby | |
- name: Publish to rubygems.org | |
run: | | |
gem push pkg/asciidoctor-kroki-${GITHUB_REF#refs/tags/ruby-v}.gem | |
working-directory: ./ruby | |
# create the GitHub release | |
- name: Create release | |
id: create_release | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: "💎 Ruby - ${{ github.ref }}" | |
draft: false | |
prerelease: false |