Skip to content

Commit

Permalink
Create gem-push.yml
Browse files Browse the repository at this point in the history
#gh PR  update merger  create gem -push.yml2.6 Ruby. Gem
  • Loading branch information
RockySpain authored Aug 18, 2024
1 parent a2f9808 commit aa17480
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Ruby Gem

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- name: Set up Ruby 2.6
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: 2.6.x

- name: Publish to GPR
run: |

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:2:7: Double quote to prevent globbing and word splitting

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:3:12: Double quote to prevent globbing and word splitting

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2059:info:4:11: Don't use variables in the printf format string. Use printf '..%s..' "$foo"

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:4:51: Double quote to prevent globbing and word splitting

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2035:info:5:11: Use ./*glob* or -- *glob* so names with dashes won't become options

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:6:62: Double quote to prevent globbing and word splitting

Check failure on line 28 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2035:info:6:71: Use ./*glob* or -- *glob* so names with dashes won't become options
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 }}

- name: Publish to RubyGems
run: |

Check failure on line 40 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting

Check failure on line 40 in .github/workflows/gem-push.yml

View workflow job for this annotation

GitHub Actions / workflow_syntax

shellcheck reported issue in this script: SC2086:info:2:7: Double quote to prevent globbing and word splitting
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}}"

0 comments on commit aa17480

Please sign in to comment.