[Plinth] [Builtins] Add a general 'mkNil' (#6347) #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow builds and publishes the metatheory site to: | |
# https://plutus.cardano.intersectmbo.org/metatheory | |
name: "🔮 Metatheory Site" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: [self-hosted, plutus-shared] | |
permissions: | |
contents: write | |
environment: | |
name: github-pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Build Site | |
run: | | |
nix build --accept-flake-config .#plutus-metatheory-site | |
mkdir _site | |
cp -RL result/* _site | |
- name: Deploy Site | |
uses: JamesIves/[email protected] | |
with: | |
folder: _site | |
target-folder: metatheory | |
single-commit: true |