From 952ad7255d77970b5520dae9bf114388d85e762e Mon Sep 17 00:00:00 2001 From: Judah Rand <17158624+judahrand@users.noreply.github.com> Date: Thu, 23 Feb 2023 10:50:54 +0000 Subject: [PATCH] Make `protoc` availiable --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 150803e77..124c75ae2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -97,6 +97,22 @@ jobs: with: toolchain: stable + - name: Install Protoc + uses: arduino/setup-protoc@v1 + with: + version: '3.x' + repo-token: ${{ secrets.GITHUB_TOKEN }} + # For some build platforms a nested container is used. We need to make + # `protoc` availiable inside that container. + - run: | + cp $(which protoc) . + cat >$GITHUB_WORKSPACE/entrypoint.sh <