-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): Add whitepaper preview (#10)
- Loading branch information
1 parent
70038a4
commit eaf0113
Showing
2 changed files
with
63 additions
and
0 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,46 @@ | ||
name: Whitepaper Preview Deploy | ||
|
||
on: | ||
# When a PR is merged (or force push to main) | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- closed | ||
paths: | ||
- "whitepaper/**/" | ||
- ".github/workflows/pages_whitepaper_preview.yaml" | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
concurrency: preview-${{ github.ref }} | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
# -=-=-=-= Strictdoc =-=-=-=- | ||
- uses: cachix/install-nix-action@v27 | ||
with: | ||
github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: cachix/cachix-action@v14 | ||
with: | ||
name: dlr-ft | ||
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | ||
- run: nix build .?submodules=1#whitepaper --print-build-logs | ||
|
||
- run: mkdir output && cp ./result ./output/whitepaper.pdf && cp ./whitepaper/index.html ./output/index.html | ||
|
||
# -=-=-=-= Deploy =-=-=-=- | ||
- name: Deploy Preview | ||
uses: rossjrw/[email protected] | ||
with: | ||
source-dir: output/ | ||
umbrella-dir: whitepaper/pr-preview |
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,17 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<meta http-equiv="refresh" content="0; url=./whitepaper.pdf"> | ||
<meta charset="UTF-8"> | ||
<title>Wasm Interpreter Whitepaper</title> | ||
<script type="text/javascript"> | ||
window.location.href = "./whitepaper.pdf" | ||
</script> | ||
</head> | ||
|
||
<body> | ||
If you are seeing this page, follow this link | ||
<a href='./whitepaper.pdf'>to the whitepaper</a>. | ||
</body> | ||
|
||
</html> |