2021-12-30 19:40:30 +08:00
|
|
|
name: genbindings
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
2022-07-07 17:42:45 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2022-07-19 18:50:49 +08:00
|
|
|
|
|
|
|
workflow_dispatch:
|
2021-12-30 19:40:30 +08:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2022-10-20 22:20:33 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-30 19:40:30 +08:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
|
|
|
|
- name: Setup Python
|
2022-10-20 22:20:33 +08:00
|
|
|
uses: actions/setup-python@v3
|
2021-12-30 19:40:30 +08:00
|
|
|
|
|
|
|
- name: Build
|
2021-12-30 20:15:42 +08:00
|
|
|
run: tools\win-ci\genbindings.ps1
|
2022-01-01 21:27:39 +08:00
|
|
|
|
|
|
|
- name: Commit genbindings changes
|
2022-10-20 22:20:33 +08:00
|
|
|
uses: EndBug/add-and-commit@v9
|
2022-01-01 21:27:39 +08:00
|
|
|
with:
|
|
|
|
committer_name: GitHub Actions
|
|
|
|
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
|
2022-06-09 17:02:41 +08:00
|
|
|
message: 'Committing genbindings changes'
|
2022-01-01 21:27:39 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|