Skip to content

Develop: Landing Page Redesign (#179) #55

Develop: Landing Page Redesign (#179)

Develop: Landing Page Redesign (#179) #55

Workflow file for this run

name: Deploy 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 repository
uses: actions/checkout@v4
- name: Install, build, and prepare Astro site
uses: withastro/action@v3
with:
path: .
node-version: 20
package-manager: npm
- name: Upload GitHub Pages artifact (v4)
uses: actions/upload-pages-artifact@v2
with:
path: ./dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4