From 81e55821d926248064c076afbd675f3e981d3e74 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 19 Sep 2023 20:24:20 -0400 Subject: [PATCH] ci: install protoc on cargo_publish (#20577) Closes https://github.com/denoland/deno/issues/20576 --- .github/workflows/cargo_publish.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cargo_publish.yml b/.github/workflows/cargo_publish.yml index e543bdb28a..4b09a04c18 100644 --- a/.github/workflows/cargo_publish.yml +++ b/.github/workflows/cargo_publish.yml @@ -34,6 +34,12 @@ jobs: # the latest version ever has issues that breaks publishing deno-version: v1.31.3 + - name: Install protoc + uses: arduino/setup-protoc@v2 + with: + version: '21.12' + repo-token: '${{ secrets.GITHUB_TOKEN }}' + - name: Publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}