We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f76ab2 commit a1f0ac8Copy full SHA for a1f0ac8
.github/workflows/ruby.yml
@@ -0,0 +1,34 @@
1
+name: Ruby Package
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'pyroscope_ffi/ruby/**'
7
+ - '.github/workflows/ruby.yml'
8
+ pull_request:
9
10
11
12
13
+jobs:
14
15
16
+ source:
17
+ name: source
18
+ runs-on: ubuntu-latest
19
20
+ steps:
21
+ - uses: actions/checkout@v2
22
23
+ - uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: '3.1'
26
27
+ - name: Build source gem
28
+ run: rake gem
29
+ working-directory: pyroscope_ffi/ruby
30
31
+ - uses: actions/upload-artifact@v2
32
33
+ name: ${{ github.sha }}
34
+ path: pyroscope_ffi/ruby/pkg/*.gem
0 commit comments