v0.1.0.beta5 #5
Workflow file for this run
This file contains hidden or 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: Push gem to RubyGems.org | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| push: | |
| name: Push gem to RubyGems.org | |
| runs-on: ubuntu-latest | |
| environment: release | |
| permissions: | |
| id-token: write # mandatory for trusted publishing | |
| contents: write # allows rake release to push the tag if missing | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| ruby-version: ruby | |
| - uses: rubygems/release-gem@v1 |