mirror of
https://github.com/meshtastic/python.git
synced 2025-12-27 01:47:50 -05:00
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: "Update protobufs"
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
update-protobufs:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Update Submodule
|
|
run: |
|
|
git pull --recurse-submodules
|
|
git submodule update --remote --recursive
|
|
|
|
- name: Download nanopb
|
|
run: |
|
|
wget https://jpa.kapsi.fi/nanopb/download/nanopb-0.4.8-linux-x86.tar.gz
|
|
tar xvzf nanopb-0.4.8-linux-x86.tar.gz
|
|
mv nanopb-0.4.8-linux-x86 nanopb-0.4.8
|
|
|
|
- name: Install poetry (needed by regen-protobufs.sh)
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip3 install poetry
|
|
|
|
- name: Re-generate protocol buffers
|
|
run: |
|
|
./bin/regen-protobufs.sh
|
|
|
|
- name: Commit update
|
|
run: |
|
|
git config --global user.name 'github-actions'
|
|
git config --global user.email 'bot@noreply.github.com'
|
|
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
|
|
git add protobufs
|
|
git add meshtastic/protobuf
|
|
git commit -m "Update protobuf submodule" && git push || echo "No changes to commit"
|