Skip to content

⬆️ Bump the svelte group with 4 updates (#12) #11

⬆️ Bump the svelte group with 4 updates (#12)

⬆️ Bump the svelte group with 4 updates (#12) #11

Workflow file for this run

name: GitHub Pages
on:
push:
branches: main
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.actor != 'nektos/act' }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version: 21
- run: pnpm install --frozen-lockfile
- run: pnpm run build
env:
BUILD_BASE: /lmgtfy
- uses: actions/upload-pages-artifact@v2
with:
path: build
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v1
id: deployment