Update audio_music_stream.c #19
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Parse raylib API | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - "src/raylib.h" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update parse files | |
| working-directory: tools/rlparser | |
| run: | | |
| make raylib_api | |
| mv raylib_api.* output | |
| - name: Diff parse files | |
| id: diff | |
| run: | | |
| git add -N tools/rlparser/output | |
| git diff --name-only --exit-code | |
| continue-on-error: true | |
| - name: Commit parse files | |
| if: steps.diff.outcome == 'failure' | |
| run: | | |
| set -x | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add tools/rlparser/output | |
| git commit -m "rlparser: update raylib_api.* by CI" | |
| git push |