Publish build #26
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: Publish build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| build: | |
| if: ${{ github.ref == 'refs/heads/master' }} | |
| name: Build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby 3.4 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4.0 | |
| - name: Install | |
| run: bundle install | |
| - name: Build the gem | |
| run: | | |
| gem build *.gemspec | |
| echo `find . -name "*.gem" | tail -1 | awk -F"[/]" '{print $2}'` | |
| - name: Publish to GPR | |
| continue-on-error: true | |
| run: | | |
| echo ${{ github.repository_owner }} | |
| mkdir -p $HOME/.gem | |
| touch $HOME/.gem/credentials | |
| chmod 0600 $HOME/.gem/credentials | |
| printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials | |
| gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem | |
| env: | |
| GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}" | |
| OWNER: ${{ github.repository_owner }} | |
| - name: Publish to RubyGems | |
| run: | | |
| mkdir -p $HOME/.gem | |
| touch $HOME/.gem/credentials | |
| chmod 0600 $HOME/.gem/credentials | |
| printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials | |
| wc -l $HOME/.gem/credentials | |
| gem push *.gem | |
| env: | |
| GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}" |