blog/.forgejo/workflows/cd.yml
Matthew Binning 40ea0f6d47
Some checks failed
CI / build (push) Successful in 12m38s
CI / build (pull_request) Has been cancelled
feat(4): Replace workflow with three
2026-03-26 14:17:17 -07:00

25 lines
522 B
YAML

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@v3
with:
name: site-${{ github.sha }}
path: blog/
- name: Deploy
run: nix shell nixpkgs#rsync --command ./deploy.sh ${{ inputs.target }}