-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1.21 KB
/
gem-push.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
name: Ruby Gem
on:
push:
paths:
- jekyll-theme-dusk.gemspec
tags:
- "*"
jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0" # Not needed with a .ruby-version file
bundler-cache: true # runs "bundle install" and caches installed gems automatically
- name: Build Gem
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}}"
- name: Publish to GitHub Releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
GH_REPO_OWNER: ${{ github.repository_owner }}
run: |
repo=${GH_REPO#$GH_REPO_OWNER*}
repo=${repo:1}
gh release create ${{ github.ref_name }} *.gem \
--title="$repo ${{ github.ref_name }}" \
--generate-notes