mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-11 08:04:26 -08:00
27 lines
814 B
YAML
27 lines
814 B
YAML
|
name: "Update protobufs"
|
||
|
on: workflow_dispatch
|
||
|
|
||
|
jobs:
|
||
|
update-protobufs:
|
||
|
environment: Production
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
token: ${{ secrets.ACCESS_TOKEN }}
|
||
|
submodules: true
|
||
|
|
||
|
- name: Update Submodule
|
||
|
run: |
|
||
|
git pull --recurse-submodules
|
||
|
git submodule update --remote --recursive
|
||
|
|
||
|
- 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 commit -am "Update protobuf submodule" && git push || echo "No changes to commit"
|