Skip to content

Fix auto stub generation #3

Fix auto stub generation

Fix auto stub generation #3

Workflow file for this run

name: Update stub
on:
push:
jobs:
stubgen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
submodules: recursive
- name: Create local changes
run: |
pip install build
python update_stub.py
- name: Commit & Push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}