Skip to content

chore: upgrade actions #72

chore: upgrade actions

chore: upgrade actions #72

name: Build and Deploy Site
on:
push:
branches: [ master ]
paths:
- 'site/**'
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3.5.3
- name: Install and Build 🔧
run: |
make setup
make build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
branch: site # The branch the action should deploy to.
folder: site/public # The folder the action should deploy.
clean: true