feat: build and deploy with netlify
Some checks failed
Build and deploy / lint (push) Has been cancelled

This commit is contained in:
Iain Learmonth 2025-06-03 16:48:47 +01:00
parent 20d45dca90
commit 85da2f5834
5 changed files with 148 additions and 1 deletions

View file

@ -0,0 +1,32 @@
name: Build and deploy
on:
push:
branches:
- main
jobs:
lint:
runs-on: docker
container:
image: ghcr.io/catthehacker/ubuntu:runner-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Nix
uses: https://guardianproject.dev/actions/install-nix-action@v31
- name: Install npm dependencies
run: nix develop --command npm install
- name: Login to Netlify
run: nix develop --command netlify login --auth ${{ secrets.NETLIFY_AUTH_TOKEN }}
- name: Run build
run: nix develop --command netlify build
- name: Deploy
run: nix develop --command netlify deploy