Add link to the OpenXR Guide for Frame Timing (#151) #45
Workflow file for this run
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: 'Build End of Chapter Archives' | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: ./build-eoc-archs.sh | |
| - name: Upload End of Chapter Archives | |
| id: upload | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: | | |
| ./build/eoc_archs/Chapter1.zip | |
| ./build/eoc_archs/Chapter2.zip | |
| ./build/eoc_archs/Chapter3.zip | |
| ./build/eoc_archs/Chapter4.zip | |
| ./build/eoc_archs/Chapter5.zip |