From 4c49a6ec942b0faafb5e5006a847e6b07da68e53 Mon Sep 17 00:00:00 2001 From: marvinlanhenke Date: Fri, 4 Oct 2024 15:07:02 +0200 Subject: [PATCH] fix: missing protoc on publish.yml --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 523f236..b577586 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,6 +16,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Install Protobuf Compiler (protoc) + run: sudo apt-get install -y protobuf-compiler - name: Dryrun swim-rs run: cargo publish --all-features --dry-run