Skip to content

🚧🧹✂️(docs): clean up and relocate subdomain #3

🚧🧹✂️(docs): clean up and relocate subdomain

🚧🧹✂️(docs): clean up and relocate subdomain #3

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
id-token: write
pages: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup & Build Astro
uses: withastro/action@v4
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4