-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (64 loc) · 1.88 KB
/
publish.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
65
66
67
---
name: Publish
run-name: Publish ${{ github.ref_name }}
on:
push:
tags:
- v*
jobs:
build:
name: Build
uses: ./.github/workflows/_build.yml
release:
name: GitHub Releases
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: ${{ needs.build.outputs.artifact_name }}
path: pkg/
- name: Generate release notes
id: changelog
run: |
mkdir tmp
outfile=tmp/changelog.txt
echo "outfile=${outfile}" >> $GITHUB_OUTPUT
npx standard-changelog@^5.0.0 --release-count 2 --infile $outfile.tmp --outfile $outfile.tmp
sed '1,3d' $outfile.tmp > $outfile
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GH_TOKEN }}
fail_on_unmatched_files: true
prerelease: ${{ contains(github.ref_name, 'pre') }}
files: pkg/*
body_path: ${{ github.workspace }}/${{ steps.changelog.outputs.outfile }}
rubygems:
name: RubyGems.org
uses: ./.github/workflows/_publish.yml
needs: build
with:
artifact_name: ${{ needs.build.outputs.artifact_name }}
registry_key: rubygems
registry_host: https://rubygems.org
secrets:
registry_credentials: ${{ secrets.RUBYGEMS_API_KEY }}
github:
name: GitHub Packages
uses: ./.github/workflows/_publish.yml
permissions:
packages: write
needs: build
with:
artifact_name: ${{ needs.build.outputs.artifact_name }}
registry_key: github
registry_host: https://rubygems.pkg.github.com/${{ github.repository_owner }}
secrets:
registry_credentials: Bearer ${{ secrets.GITHUB_TOKEN }}