Skip to content

Update title in index.html and adjust Skill component layout #5

Update title in index.html and adjust Skill component layout

Update title in index.html and adjust Skill component layout #5

Workflow file for this run

name: Deploy Vite site to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout source
uses: actions/checkout@v4
- name: 🛠️ Setup Node (LTS)
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📦 Install dependencies
run: npm ci
- name: 🔧 Build with Vite
run: npm run build
- name: 📦 Upload build artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
permissions:
pages: write
id-token: write
steps:
- name: 🚀 Deploy to GitHub Pages
id: deploy
uses: actions/deploy-pages@v4