Update SDK

This commit is contained in:
Tsubasa6848
2023-03-03 19:38:57 +08:00
Unverified
parent 791ed8e408
commit 2905ee5a3c
4 changed files with 97 additions and 0 deletions
+20
View File
@@ -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