Skip to content

fix because I couldn't check the pull (busy with irl stuff) #25

fix because I couldn't check the pull (busy with irl stuff)

fix because I couldn't check the pull (busy with irl stuff) #25

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-and-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/[email protected]
with:
path: "./dist"
- name: Deploy to GH Pages
id: deployment
uses: actions/[email protected]