Skip to content

Update astro

Update astro #40

Workflow file for this run

name: Deploy Github Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
- name: ⚙️ Setup Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x
- name: 🤖 Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: pnpm
- name: 📃 Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: ⚙️ Install dependencies
run: pnpm install --frozen-lockfile
- name: 🛠️ Build with Astro
run: |
pnpm astro build \
--site "${{ steps.pages.outputs.origin }}" \
--base "${{ steps.pages.outputs.base_path }}"
- name: ⚡ Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: 🚀 Deploy
id: deployment
uses: actions/deploy-pages@v2