-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (57 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
---
on:
push:
tags:
- v*
name: Release
jobs:
build:
runs-on: ubuntu-latest
name: Build and Release
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby 3.0
uses: actions/setup-ruby@v1
with:
ruby-version: 3.0
- name: Rake Build
run: |
ruby -v
gem install bundler
bundle install
rake clean test build
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Publish to GPR
continue-on-error: true
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
rake build
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} pkg/tp_link_smartplug-*.gem
env:
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
OWNER: ${{ github.repository_owner }}
- name: Publish to RubyGems
continue-on-error: true
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
rake build
gem push pkg/tp_link_smartplug-*.gem
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
...