Skip to content

Commit 2ae4cdc

Browse files
authored
fix(ruby-ci): Redirect stderr to stdout for grep (#56)
1 parent 2f12daf commit 2ae4cdc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
run: |
180180
gem install pkg/eppo-server-sdk-*.gem --verbose
181181
script="puts EppoClient::Core::Client.new(EppoClient::Config.new('placeholder'))"
182-
ruby -reppo_client -e "$script" | grep 'fetching new configuration'
182+
ruby -reppo_client -e "$script" 2>&1 | grep 'fetching new configuration'
183183
echo "✅ Successfully installed gem"
184184
185185
- name: Set outputs

ruby-sdk/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ruby-sdk/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
eppo-server-sdk (3.2.6)
4+
eppo-server-sdk (3.2.7)
55
rb_sys (~> 0.9.102)
66

77
GEM

ruby-sdk/ext/eppo_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "eppo_client"
33
# TODO: this version and lib/eppo_client/version.rb should be in sync
4-
version = "3.2.6"
4+
version = "3.2.7"
55
edition = "2021"
66
license = "MIT"
77
publish = false

ruby-sdk/lib/eppo_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# TODO: this version and ext/eppo_client/Cargo.toml should be in sync
44
module EppoClient
5-
VERSION = "3.2.6"
5+
VERSION = "3.2.7"
66
end

0 commit comments

Comments
 (0)