mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
65 lines
1.4 KiB
YAML
65 lines
1.4 KiB
YAML
name: Deploy Astro site to Pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: false
|
|
|
|
env:
|
|
BUILD_PATH: "./"
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v3
|
|
with:
|
|
version: "10.18"
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "23"
|
|
cache: "pnpm"
|
|
- name: Setup Pages
|
|
id: pages
|
|
uses: actions/configure-pages@v5
|
|
- name: Install dependencies
|
|
run: "pnpm install"
|
|
working-directory: ${{ env.BUILD_PATH }}
|
|
- name: Build with Astro
|
|
run: |
|
|
echo "Setting SITE_URL to $SITE_URL"
|
|
pnpm astro build
|
|
env:
|
|
SITE_URL: "${{ steps.pages.outputs.origin }}/${{ steps.pages.outputs.base_path }}"
|
|
working-directory: ${{ env.BUILD_PATH }}
|
|
- name: Upload artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: ${{ env.BUILD_PATH }}/dist
|
|
|
|
deploy:
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
name: Deploy
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|