Skip to content

chore(actions): remove Windows and MacOS builds (#98) #8

chore(actions): remove Windows and MacOS builds (#98)

chore(actions): remove Windows and MacOS builds (#98) #8

Workflow file for this run

name: Deploy Astro site to Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup & Build Astro
uses: withastro/action@v4
with:
path: www
package-manager: npm
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