From e3fd8820cd128c704f208cebc14b5e7ded57b28a Mon Sep 17 00:00:00 2001 From: Ieva Grazuleviciute Date: Mon, 25 Mar 2024 14:58:53 +0200 Subject: [PATCH] install at different step --- .github/workflows/build_release_pipeline.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_release_pipeline.yml b/.github/workflows/build_release_pipeline.yml index ea6a742..f658190 100644 --- a/.github/workflows/build_release_pipeline.yml +++ b/.github/workflows/build_release_pipeline.yml @@ -9,6 +9,7 @@ jobs: build-release-pipeline: runs-on: ubuntu-latest steps: + - run: sudo apt-get -y install protobuf-compiler - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: @@ -18,8 +19,6 @@ jobs: run: | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --quiet --default-toolchain=1.73.0 --profile=minimal echo "$HOME/.cargo/bin" >> $GITHUB_PATH - - name: Install protobuf - - run: sudo apt-get -y install protobuf-compiler - name: Compile dependencies run: bundle exec rake compile - name: Test