-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/input-output-hk/plutus in…
…to effectfully/errors/preserve-operational-unlifting-errors
- Loading branch information
Showing
97 changed files
with
5,106 additions
and
3,399 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This workflow builds a combined haddock and publishes it to: | ||
# https://intersectmbo.github.io/plutus/haddock/master | ||
# https://intersectmbo.github.io/plutus/haddock/release/X.X.X.X | ||
name: "Combined Haddock" | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
- release/** | ||
jobs: | ||
build-and-deploy-combined-haddock: | ||
runs-on: [self-hosted, plutus-shared] | ||
permissions: | ||
contents: write | ||
environment: | ||
name: github-pages | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build Haddock | ||
run: | | ||
nix develop --accept-flake-config --command bash ./scripts/combined-haddock.sh | ||
- name: Deploy Haddock | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
# This folder is generated in the step above | ||
folder: combined_haddock_dst | ||
target-folder: haddock/${{ github.ref_name }} | ||
# combined_haddock_dst is ~400MB and keeping the entire history is unnecessary. | ||
single-commit: true |
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 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 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 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
Oops, something went wrong.