Skip to content

Bump vite from 5.4.2 to 5.4.3 #238

Bump vite from 5.4.2 to 5.4.3

Bump vite from 5.4.2 to 5.4.3 #238

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build the application and upload the output as an artifact.
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: yarn
- name: Build with Next.js
run: yarn build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist/
# Deployment job.
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