Diffuse transmission (again) (#544) #183
This file contains 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/checkout@v2.3.1 | |
with: | |
submodules: "recursive" | |
lfs: true | |
- name: Install and Build | |
run: | | |
cd app_web | |
npm install | |
npm run build | |
- name: Check build size | |
# 1GB = 1073741824 bytes | |
run: | | |
SIZE=$(du -s -B 1 app_web/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/github-pages-deploy-action@v4.6.3 | |
with: | |
branch: main | |
folder: app_web/dist/ | |
token: ${{ secrets.BUILD_GITHUB_PAGES }} | |
repository-name: KhronosGroup/glTF-Sample-Viewer-Release | |
target-folder: docs | |
clean-exclude: | | |
docs/glxf | |
glxf | |