From 082b2cd112dddb431b724a18e7ddec3b4c9c2608 Mon Sep 17 00:00:00 2001 From: Fotis Paschos Date: Tue, 31 Oct 2023 18:44:37 +0200 Subject: [PATCH] CI: Publish fixes --- .github/workflows/publish.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8dc618f..e9b454b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -47,15 +47,11 @@ jobs: # CARGO_REGISTRY_TOKEN: ${{ secrets.crates_io_token }} ## TODO conditional build.rs for feature protobuf and prost - - name: Install protoc - uses: taiki-e/install-action@v2 - with: - tool: protoc@${{ env.PROTOC_VERSION }} - name: Dry run publish proto-mapper - run: cargo publish --dry-run --manifest-path Cargo.toml -p proto-mapper --features protobuf + run: cargo publish --no-verify --dry-run --manifest-path Cargo.toml -p proto-mapper - name: Publish crate proto-mapper - run: cargo publish --manifest-path Cargo.toml -p proto-mapper --features protobuf + run: cargo publish --no-verify --manifest-path Cargo.toml -p proto-mapper env: CARGO_REGISTRY_TOKEN: ${{ secrets.crates_io_token }} \ No newline at end of file