File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name: Update-Sample
2+ on: workflow_dispatch
3+
4+ jobs:
5+ update-project:
6+ name: Update Sample
7+ runs-on: ubuntu-latest
8+ permissions:
9+ contents: write
10+ steps:
11+ - name: Announce repo
12+ run: echo ${{ github.event.inputs.name }}
13+ - name: Checkout code
14+ uses: actions/checkout@v3
15+ with:
16+ submodules: recursive
17+ - name: Execute
18+ run: |
19+ cd to-build/sdl3-sample
20+ git pull --recurse-submodules
21+ - name: git config
22+ run: |
23+ git config user.name github-actions[bot]
24+ git config user.email 22283943+github-actions[bot]@users.noreply.github.com
25+ git stash
26+ git pull
27+ git stash pop
28+ - name: git commit
29+ run: git add . && git commit -m "Update android-project"
30+ - name: git push
31+ run: git push origin HEAD:main
You can’t perform that action at this time.
0 commit comments