feat(4): Replace workflow with three
Some checks failed
CI / build (push) Failing after 18s

This commit is contained in:
Matthew Binning 2026-03-26 14:11:59 -07:00
parent 0ea4c5179c
commit 0b92f900db
4 changed files with 75 additions and 22 deletions

25
.forgejo/workflows/cd.yml Normal file
View file

@ -0,0 +1,25 @@
name: CD
on:
workflow_dispatch:
inputs:
target:
description: "Deployment target"
required: true
type: choice
options:
- local
- staging
- prod
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: site-${{ github.sha }}
path: blog/
- name: Deploy
run: nix shell nixpkgs#rsync --command ./deploy.sh ${{ inputs.target }}