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: [main] | |
workflow_dispatch: # allow manual deployment through GitHub Action UI | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Version file changed | |
id: version-file-changed | |
uses: tj-actions/changed-files@v42 | |
with: | |
files: lib/rspec_profiling/version.rb | |
- name: Set up Ruby | |
if: ${{ github.event_name == 'workflow_dispatch' || steps.version-file-changed.outputs.any_changed == 'true' }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
bundler-cache: true | |
- name: Installing dependencies | |
if: ${{ github.event_name == 'workflow_dispatch' || steps.version-file-changed.outputs.any_changed == 'true' }} | |
run: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle | |
- name: Build gem file | |
if: ${{ github.event_name == 'workflow_dispatch' || steps.version-file-changed.outputs.any_changed == 'true' }} | |
run: bundle exec rake build | |
- uses: fac/ruby-gem-setup-credentials-action@v2 | |
if: ${{ github.event_name == 'workflow_dispatch' || steps.version-file-changed.outputs.any_changed == 'true' }} | |
with: | |
user: "" | |
key: rubygems | |
token: ${{secrets.RUBY_GEMS_API_KEY}} | |
- uses: fac/ruby-gem-push-action@v2 | |
if: ${{ github.event_name == 'workflow_dispatch' || steps.version-file-changed.outputs.any_changed == 'true' }} | |
with: | |
key: rubygems |