-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (59 loc) · 2.12 KB
/
publish-gem.yaml
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
65
66
67
68
name: Publish Ruby Gem
on:
release:
types: [published]
jobs:
release:
name: Publish Ruby Gem
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
# We are not letting this step to run bundle install, we will do it later
bundler-cache: false
- name: Install dependencies
run: bundle install
- name: Get token
id: get_token
uses: tibdex/github-app-token@v2
with:
private_key: ${{ secrets.RELEASE_APP_PEM }}
app_id: ${{ secrets.RELEASE_APP_ID }}
- name: Bump version
run: |
NEW_VERSION=$(echo ${{ github.event.release.tag_name }} | sed 's/^v//') # strip the 'v' from the tag if present
sed -i "s/^ VERSION = '.*'/ VERSION = '${NEW_VERSION}'/g" lib/descope/version.rb
echo -e "Updated version file:\n $(cat lib/descope/version.rb)"
- name: Commit changes
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git checkout main
git add ./lib/descope/version.rb
git commit -m "Bump version to $NEW_VERSION"
git push origin main
env:
GITHUB_TOKEN: ${{ steps.get_token.outputs.token }}
- name: Repoint the tag to latest commit
run: |
git tag -d ${{ github.event.release.tag_name }}
git tag ${{ github.event.release.tag_name }} -m "Release $NEW_VERSION"
git push origin :${{ github.event.release.tag_name }}
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- 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}}"