Merge pull request #618 from KhronosGroup/feature/KHR_materials_volum… #245
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: Deploy to github pages | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-and-deploy-to-github-pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| with: | |
| submodules: "recursive" | |
| lfs: true | |
| - name: Install and Build | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Check build size | |
| # 1GB = 1073741824 bytes | |
| run: | | |
| SIZE=$(du -s -B 1 dist/ | cut -f 1) | |
| if [[ $SIZE -gt 1073741824 ]]; then echo 'dist folder exceeds limit of 1GB! Aborting'; exit 1; fi | |
| - name: Deploy to Khronos repo | |
| continue-on-error: true # If no changes are commited this action fails | |
| uses: JamesIves/[email protected] | |
| with: | |
| branch: main | |
| folder: dist/ | |
| token: ${{ secrets.BUILD_GITHUB_PAGES }} | |
| repository-name: KhronosGroup/glTF-Sample-Viewer-Release | |
| target-folder: docs | |
| clean-exclude: | | |
| docs/glxf | |
| glxf | |