Skip to content

Excercise 2.1

Excercise 2.1 #40

Workflow file for this run

name: Build and Deploy
on: [push, pull_request]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- uses: wenkokke/[email protected]
with:
agda-version: "2.6.4"
- name: Install and Build 🔧
run: |
apt-get update && apt-get install -y rsync
npm ci
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: html # The folder the action should deploy.