ci: fix release workflow for grpc-google-pubsub (#214)

Signed-off-by: Kirill Fomichev <fanatid@ya.ru>
This commit is contained in:
Kirill Fomichev 2023-10-19 20:29:38 +04:00 committed by GitHub
parent d8f4f38258
commit 277b5b6e4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -77,6 +77,7 @@ jobs:
run: |
mv target/release/client target/release/client-22
mv target/release/config-check target/release/config-check-22
mv target/release/grpc-google-pubsub target/release/grpc-google-pubsub-22
mv target/release/grpc-kafka target/release/grpc-kafka-22
mv ${{ env.GEYSER_PLUGIN_NAME }}-release-x86_64-unknown-linux-gnu.tar.bz2 ${{ env.GEYSER_PLUGIN_NAME }}-release22-x86_64-unknown-linux-gnu.tar.bz2
mv ${{ env.GEYSER_PLUGIN_NAME }}-release-x86_64-unknown-linux-gnu.yml ${{ env.GEYSER_PLUGIN_NAME }}-release22-x86_64-unknown-linux-gnu.yml
@ -86,6 +87,7 @@ jobs:
rm -rf \
target/release/client.d \
target/release/config-check.d \
target/release/grpc-google-pubsub.d \
target/release/grpc-kafka.d
- name: Release
@ -102,4 +104,5 @@ jobs:
yellowstone-grpc-proto/proto/*.proto
target/release/client*
target/release/config-check*
target/release/grpc-google-pubsub*
target/release/grpc-kafka*

View File

@ -133,7 +133,7 @@ Options:
```bash
# export creds
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/google/project/creds.json
# semd messages from gRPC to Google Pub/Sub
# send messages from gRPC to Google Pub/Sub
cargo run --bin grpc-google-pubsub -- --config yellowstone-grpc-tools/config-google-pubsub.json grpc2pubsub
```