Skip to content

Merge pull request #17 from LostMyCode/feat/migrate-to-vite #11

Merge pull request #17 from LostMyCode/feat/migrate-to-vite

Merge pull request #17 from LostMyCode/feat/migrate-to-vite #11

Workflow file for this run

name: Github Pages Deploy
on:
push:
branches: [ "master", "test/update_deploy_action" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
needs: build
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4
id: deployment