Skip to content

Merge pull request #1 from PachecoCole/Small-bug-fix #2

Merge pull request #1 from PachecoCole/Small-bug-fix

Merge pull request #1 from PachecoCole/Small-bug-fix #2

name: Deploy to GitHub Pages
on:
push:
branches:
- master
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Use latest node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install Dependencies
run: yarn
- name: Build
# Vite needs a base folder to point the url to
run: yarn build-examples --base=/three-projected-material/
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./examples/dist
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1