mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-18 00:52:24 -06:00
Most of these are motivated by the EOL for Node 16 (for more, see [GitHub's post on it](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/)).
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@v4
|
|
- name: Setup Ruby 3.2
|
|
uses: ruby/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}}"
|