-
Notifications
You must be signed in to change notification settings - Fork 447
36 lines (35 loc) · 1.05 KB
/
release.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
name: Release
on:
push:
branches:
- 'main'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: ruby
package-name: rotp
version-file: "lib/rotp/version.rb"
# Checkout code if release was created
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
# Setup ruby if a release was created
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
if: ${{ steps.release.outputs.release_created }}
- name: Run tests
run: bundle exec rspec
if: ${{ steps.release.outputs.release_created }}
# build gem and add to release
- name: Upload Release Artifact
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run:
gem build *.gemspec
gh release upload ${{ steps.release.outputs.tag_name }} *.gem