From c4f51ba3d0474492861044b0765d9580cbbff75b Mon Sep 17 00:00:00 2001 From: MatthieuCoder Date: Tue, 3 Jan 2023 15:02:16 +0400 Subject: [PATCH] fix protobuf --- .github/workflows/build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 110d266..2c1c3b2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,10 @@ jobs: steps: - name: Setup | Checkout uses: actions/checkout@v2 + - name: Install Protoc + uses: arduino/setup-protoc@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Setup | Rust uses: ATiltedTree/setup-rust@v1 with: @@ -28,14 +32,16 @@ jobs: uses: actions/checkout@v2 - name: Install Protoc uses: arduino/setup-protoc@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Setup | Rust uses: ATiltedTree/setup-rust@v1 with: rust-version: stable - name: Build | Compile run: cargo check - test: - name: Test + build: + name: build strategy: matrix: os: @@ -53,6 +59,8 @@ jobs: uses: actions/checkout@v2 - name: Install Protoc uses: arduino/setup-protoc@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Setup | Rust uses: ATiltedTree/setup-rust@v1 with: -- 2.39.5