Release #33
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: | |
workflow_run: | |
workflows: [ 'Run Tests' ] | |
branches: [ 'main' ] | |
types: [ completed ] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v4 | |
id: release | |
# Checkout code if release was created | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
# Setup ruby if a release was created | |
- uses: ruby/setup-ruby@v1 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
ruby-version: 3.2 | |
- name: Set Credentials | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
mkdir -p $HOME/.gem | |
touch $HOME/.gem/credentials | |
chmod 0600 $HOME/.gem/credentials | |
printf -- "---\n:github: Bearer ${GITHUB_TOKEN}\n" > $HOME/.gem/credentials | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Publish to GitHub Packages | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
export OWNER=$( echo ${{ github.repository }} | cut -d "/" -f 1 ) | |
gem build *.gemspec | |
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem |