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 b757527 commit 32eb519Copy full SHA for 32eb519
.github/workflows/release.yml
@@ -73,6 +73,18 @@ jobs:
73
working-directory: clients/js
74
env:
75
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
76
+ publish-ruby-client:
77
+ runs-on: ubuntu-latest
78
+ needs: create-release
79
+ steps:
80
+ - uses: actions/checkout@v2
81
+ - uses: actions/setup-ruby@v1
82
+ with:
83
+ ruby-version: '2.5'
84
+ - run:
85
+ working-directory: clients/ruby
86
+ env:
87
+ RUBYGEMS_AUTH_TOKEN: ${{ secrets.RUBYGEMS_TOKEN }}
88
publish-server:
89
runs-on: ubuntu-latest
90
needs: create-release
clients/ruby/bin/setup
@@ -3,6 +3,7 @@ set -euo pipefail
3
IFS=$'\n\t'
4
set -vx
5
6
+gem install bundler:1.17.3
7
bundle install
8
9
# Do any other automated setup that you need to do here
0 commit comments