File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ changelog:
19
19
labels :
20
20
- java
21
21
22
+ - title : Ruby
23
+ labels :
24
+ - ruby
25
+
22
26
- title : Other Dependencies
23
27
labels :
24
28
- dependencies
Original file line number Diff line number Diff line change @@ -19,12 +19,20 @@ jobs:
19
19
- uses : actions/checkout@v4
20
20
21
21
- name : Build
22
- id : save-ruby-sdk-version
23
22
run : |
24
23
./build.sh
25
24
shell : bash
26
25
working-directory : ruby/src
27
26
27
+ - name : Save Ruby SDK Version
28
+ id : save-ruby-sdk-version
29
+ run : |
30
+ unzip -q build/opentelemetry-ruby-layer.zip
31
+ export GEM_PATH=$PWD/ruby/gems/3.2.0/
32
+ RUBY_SDK_VERSION=$(ruby -e 'require "opentelemetry-sdk"; puts OpenTelemetry::SDK::VERSION')
33
+ echo "RUBY_SDK_VERSION=$RUBY_SDK_VERSION" >> $GITHUB_OUTPUT
34
+ working-directory : ruby/src
35
+
28
36
- name : Show directory contents
29
37
run : |
30
38
ls -al
You can’t perform that action at this time.
0 commit comments