Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

cleanup for loading items #7

cleanup for loading items

cleanup for loading items #7

Workflow file for this run

name: Deploy to GitHub Pages
defaults:
run:
working-directory: ./web
on:
push:
branches: 'feature/web-view'
jobs:
build_site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# could also be 'recursive'
submodules: true
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
cache-dependency-path: ./web/package-lock.json
- name: Install dependencies
run: npm install
- name: build
env:
# '/asset-explorer' - not used since custom domain
BASE_PATH: 'usd-wg-assets'
run: |
npm run build
touch build/.nojekyll
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v1
with:
# this should match the `pages` option in your adapter-static options
path: './web/build/'
deploy:
needs: build_site
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1