This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
Release #4
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: [Test] | |
types: [completed] | |
branches: [master, main] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # (latest, untagged) | |
- name: Version file changed | |
id: version-file-changed | |
uses: tj-actions/changed-files@246636f5fa148b5ad8e65ca4c57b18af3123e5f6 # (latest, untagged) | |
with: | |
files: lib/blueprinter/version.rb | |
- name: Release New Gem Version | |
if: ${{ steps.version-file-changed.outputs.any_changed == 'true' }} | |
uses: cadwallion/publish-rubygems-action@94a6f4cd5350581749c569b5001eecc864e3ad0b # (latest, untagged) | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
RUBYGEMS_API_KEY: ${{secrets.RUBY_GEMS_API_KEY}} | |
RELEASE_COMMAND: bundle exec rake release || true # Don't fail when deploy does not take place |