Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Ruby Gem
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build + Publish
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Ruby 2.6
|
|
uses: actions/setup-ruby@v1.1.3
|
|
with:
|
|
ruby-version: 2.6.x
|
|
|
|
#- name: Publish to GPR
|
|
# run: |
|
|
# mkdir -p $HOME/.gem
|
|
# touch $HOME/.gem/credentials
|
|
# chmod 0600 $HOME/.gem/credentials
|
|
# printf -- "---\n:github: Bearer ${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: ${{secrets.GITHUB_TOKEN}}
|
|
# OWNER: wpscanteam
|
|
|
|
- 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}}
|