Skip to content

🐎 ci: test deploy to pages #2

🐎 ci: test deploy to pages

🐎 ci: test deploy to pages #2

Workflow file for this run

name: Deploy chili3d to Pages
on:
push:
branches: [ "test" ]
pull_request:
branches: [ "test" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Build
run: |
npm install
npm run build
rm -rf dist/*.map
- name: Upload GitHub Pages artifact
uses: actions/[email protected]
with:
path: ./dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4