Skip to content

Build & Deploy Website #163

Build & Deploy Website

Build & Deploy Website #163

name: Build & Deploy Website
on:
push:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
workflow_run:
workflows: ['Build & Release Desktop']
types: [completed]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install, build, and upload your site
uses: withastro/action@v0
with:
path: './@webwriter/website'
node-version: 20
package-manager: npm
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1