mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-22 02:52:23 -06:00
Ruby 3.2 has stabilized (and the bug with Liquid has been patched). I think this is a good time for us to bump all of our versions, especially with the discussion in #1307. Separately, I've: - changed the core test matrix to be across `3.0`, `3.1`, and `3.2`. Ruby 2 has been EOL for ~ 4 months, while 3.0 is around for about 7 more months. - standardized the formatting of our CI ruby versions to be strings; this is because the number `3.0` gets YAML-casted to `3`
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Publish Ruby Gem
|
|
|
|
on:
|
|
workflow_dispatch
|
|
|
|
jobs:
|
|
build:
|
|
name: Publish
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Ruby 3.2
|
|
uses: actions/setup-ruby@v1
|
|
with:
|
|
ruby-version: "3.2"
|
|
|
|
- name: Publish to GPR
|
|
run: |
|
|
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 build *.gemspec
|
|
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 }}
|
|
|
|
# Disabled as this does not handle 2FA
|
|
# - 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
|
|
# gem build *.gemspec
|
|
# gem push *.gem
|
|
# env:
|
|
# GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|