There was an error while loading. Please reload this page.
1 parent 3ad0629 commit 3780531Copy full SHA for 3780531
.github/workflows/publish.yml
@@ -22,7 +22,13 @@ jobs:
22
distribution: 'temurin'
23
java-version: '17'
24
- name: Run builds
25
- run: ./.run.builds.sh
+ run: |
26
+ mkdir protoc-plugins
27
+ curl -sL https://github.com/protocolbuffers/protobuf-javascript/releases/download/v3.21.4/protobuf-javascript-3.21.4-linux-x86_64.tar.gz | tar xzfO - bin/protoc-gen-js > protoc-plugins/protoc-gen-js
28
+ curl -sL https://github.com/grpc/grpc-web/releases/download/1.5.0/protoc-gen-grpc-web-1.5.0-linux-x86_64 > protoc-plugins/protoc-gen-grpc-web
29
+ chmod 744 protoc-plugins/protoc-gen-*
30
+ echo "$PWD/protoc-plugins" >> "$GITHUB_PATH"
31
+ ./.run.builds.sh
32
- name: Setup Ruby
33
uses: ruby/setup-ruby@v1
34
with:
0 commit comments