-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (51 loc) · 1.91 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: release
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
release-release:
runs-on: ubuntu-latest
steps:
- name: Update Release PR
uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: ruby
package-name: ombu_labs-auth
version-file: "lib/ombu_labs/auth/version.rb"
changelog-types: '[{"type":"feat","section":"Features","hidden":false}, {"type":"fix","section":"Bug Fixes","hidden":false}, {"type":"chore", "section":"Miscellaneous","hidden":false}]'
- name: Checkout
uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}
- name: Set Up Ruby
uses: ruby/setup-ruby@v1
with:
bundle-cache: true
if: ${{ steps.release.outputs.release_created }}
- name: Bundle Install
run: bundle install
if: ${{ steps.release.outputs.release_created }}
- name: Publish to GitHub
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_AUTH_TOKEN }}"
if: ${{ steps.release.outputs.release_created }}