-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (30 loc) · 870 Bytes
/
release.yml
File metadata and controls
39 lines (30 loc) · 870 Bytes
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
name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Set up Ruby
uses: ruby/setup-ruby@v1.302.0
with:
ruby-version: '3.4'
bundler-cache: true
- name: Build gem
run: gem build lizard.gemspec
- name: Set up GPR credentials
run: |
mkdir -p ~/.gem
echo -e "---\n:github: Bearer ${{ secrets.GPR_TOKEN }}" > ~/.gem/credentials
chmod 0600 ~/.gem/credentials
- name: Publish to GitHub Packages
run: gem push --key github --host https://rubygems.pkg.github.com/djbender lizard-*.gem
- name: Create GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create "${{ github.ref_name }}" lizard-*.gem --generate-notes