Update SDK
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
name: Update SDK
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update_sdk:
|
||||
name: Update SDK
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout the main branch
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Update submodules
|
||||
run: |
|
||||
git submodule update --init --remote
|
||||
git config --global user.name "github-actions[bot]"
|
||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git commit -am "Update SDK" || exit 0
|
||||
git push || exit 0
|
||||
Reference in New Issue
Block a user