Skip to content

Bump vite in the npm_and_yarn group across 1 directory #47

Bump vite in the npm_and_yarn group across 1 directory

Bump vite in the npm_and_yarn group across 1 directory #47

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "pnpm"
- name: install
run: pnpm install --frozen-lockfile
- name: build
run: pnpm build
env:
BASE_PATH: "/QuickIME/"
- name: Create .nojekyll
run: touch .output/public/.nojekyll
- name: upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ".output/public"
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4