Skip to content

Update index.vue

Update index.vue #44

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
- name: Setup Node 🐒
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: PNPM Setup 🟨
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory πŸ“
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm Cache ☁️
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies πŸ“¦
run: pnpm install
- name: Build πŸ—οΈ
run: |
pnpm generate
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: .output/public