From cf61a5d39d7a8587400e98b6cbae469344165f18 Mon Sep 17 00:00:00 2001 From: mkinney Date: Sun, 23 Jan 2022 15:09:44 -0800 Subject: [PATCH] Update update_protobufs.yml --- .github/workflows/update_protobufs.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/update_protobufs.yml b/.github/workflows/update_protobufs.yml index f84ad98..2123fab 100644 --- a/.github/workflows/update_protobufs.yml +++ b/.github/workflows/update_protobufs.yml @@ -15,6 +15,17 @@ jobs: run: | git pull --recurse-submodules git submodule update --remote --recursive + + - name: Download nanopb + run: | + wget https://jpa.kapsi.fi/nanopb/download/nanopb-0.4.4-linux-x86.tar.gz + tar xvzf nanopb-0.4.4-linux-x86.tar.gz + mv nanopb-0.4.4-linux-x86 nanopb-0.4.4 + + - name: Re-generate protocol buffers + run: | + ./bin/regen-protos.sh + - name: Commit update run: | git config --global user.name 'github-actions'