Skip to content

Commit

Permalink
fix: separate release and publish actions
Browse files Browse the repository at this point in the history
Signed-off-by: David Looi <[email protected]>
  • Loading branch information
davelooi committed Oct 21, 2024
1 parent ea17df1 commit 0b0da87
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 42 deletions.
40 changes: 40 additions & 0 deletions .github/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Publish Gem

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Publish to GPR
env:
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
OWNER: ${{ github.repository_owner }}
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
- name: Publish to RubyGems
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"
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
43 changes: 1 addition & 42 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,45 +12,4 @@ jobs:
- uses: google-github-actions/release-please-action@v3
id: release
with:
# https://github.com/google-github-actions/release-please-action
default-branch: master
release-type: ruby
package-name: bsb
version-file: lib/bsb/version.rb
fork: false
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true

- if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v4

- if: ${{ steps.release.outputs.release_created }}
name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- if: ${{ steps.release.outputs.release_created }}
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 }}

- if: ${{ steps.release.outputs.release_created }}
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_API_KEY}}"
target-branch: master

0 comments on commit 0b0da87

Please sign in to comment.