From 62e8b6a6cc4a4677a6a4b4e2aa9f640502541378 Mon Sep 17 00:00:00 2001 From: Kirill Fomichev Date: Tue, 10 Oct 2023 12:28:34 +0400 Subject: [PATCH] fix package name --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f4ad4eff..d6f8eed2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,14 +5,14 @@ concurrency: cancel-in-progress: true on: - workflow_dispatch: push: + branches: + - 'master' tags: - 'v*' - 'geyser-v*' - 'kafka-v*' - branches: - - 'master' + workflow_dispatch: env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98642707..0becf855 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,8 +5,9 @@ concurrency: cancel-in-progress: true on: - workflow_dispatch: pull_request: + push: + workflow_dispatch: env: CARGO_TERM_COLOR: always @@ -68,7 +69,7 @@ jobs: - name: check features in `client` run: cargo check -p yellowstone-grpc-client --all-targets --tests - name: check features in `client-simple` - run: cargo check -p yellowstone-grpc-client-somple --all-targets --tests + run: cargo check -p yellowstone-grpc-client-simple --all-targets --tests - name: check features in `geyser` run: cargo check -p yellowstone-grpc-geyser --all-targets --tests - name: check features in `kafka`