-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (99 loc) · 3.12 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Release RubyGem
on: workflow_dispatch
env:
SUPPORTED_RUBY_VERSIONS: "3.1,3.2,3.3"
LATEST_RUBY_VERSION: "3.3"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build native gems
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
platform:
- aarch64-linux
- arm64-darwin
- x86_64-darwin
- x86_64-linux
- x86_64-linux-musl
- x64-mingw-ucrt
steps:
- uses: actions/checkout@v4
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1
with:
ruby-version: "${{ env.LATEST_RUBY_VERSION }}"
bundler-cache: false
cargo-cache: true
cargo-vendor: true
cache-version: v1-${{ matrix.platform }}
- uses: oxidize-rb/actions/cross-gem@main
id: cross-gem
with:
platform: ${{ matrix.platform }}
ruby-versions: "${{ env.SUPPORTED_RUBY_VERSIONS }}"
- uses: actions/upload-artifact@v2
with:
name: cross-gem
path: ${{ steps.cross-gem.outputs.gem-path }}
- name: Display structure of built gems
run: ls -R
working-directory: pkg/
- name: Smoke gem install
if: matrix.platform == 'x86_64-linux' # GitHub actions architecture
run: |
gem install pkg/reprise-*.gem --verbose
echo "✅ Gem installed successfully"
release:
name: Release
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1
with:
ruby-version: "${{ env.LATEST_RUBY_VERSION }}"
bundler-cache: true
cargo-cache: true
cache-version: v1
# It seems that v4 is not compatible with how artifacts are uploaded by
# oxidize-rb/cross-gem. So this must stay as v3 until the issue
# below is fixed.
# See https://github.com/oxidize-rb/actions/issues/27, for more details.
- uses: actions/download-artifact@v3
with:
name: cross-gem
path: pkg
- name: Push Gem
working-directory: pkg/
env:
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials
ls -l
for i in *.gem; do
if [ -f "$i" ]; then
if ! gem push "$i" >push.out; then
gemerr=$?
sed 's/^/::error:: /' push.out
if ! grep -q "Repushing of gem" push.out; then
exit $gemerr
fi
fi
fi
done
- name: Create GitHub release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
generateReleaseNotes: true
draft: true
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
skipIfReleaseExists: true