Skip to content

Commit a59ad73

Browse files
author
Documenter.jl
committed
delete history
0 parents  commit a59ad73

File tree

1,769 files changed

+213477
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,769 files changed

+213477
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Fix Vitepress Symbolic Links
2+
3+
on:
4+
# Runs on pushes targeting the default branch
5+
push:
6+
branches:
7+
- "gh-pages"
8+
9+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
15+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
16+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
17+
concurrency:
18+
group: pages
19+
cancel-in-progress: false
20+
21+
jobs:
22+
# Build job
23+
build:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
with:
29+
ref: "gh-pages"
30+
fetch-depth: 0 # Not needed if lastUpdated is not enabled
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v5
33+
- name: Fix Symbolic links for Vitepress
34+
run: |
35+
find -type l -exec bash -c 'dir="$0"; repo="\/QuantumToolbox.jl\/"; newlnk="$repo${dir:2}"; lnk="$(readlink -m "$0")"; orglnk="$repo$(basename $lnk)"; echo "$newlnk --> $orglnk"; rm "$0"; cp -r $lnk "$0"; cd "$0"; grep "$orglnk" . -lr | xargs sed -i "s/$orglnk/$newlnk/g"; cd ..' {} \;
36+
ls -al;
37+
- name: Build with Jekyll
38+
uses: actions/jekyll-build-pages@v1
39+
with:
40+
source: ./
41+
destination: ./_site
42+
- name: Upload artifact
43+
uses: actions/upload-pages-artifact@v3
44+
45+
# Deployment job
46+
deploy:
47+
environment:
48+
name: github-pages
49+
url: ${{ steps.deployment.outputs.page_url }}
50+
runs-on: ubuntu-latest
51+
needs: build
52+
steps:
53+
- name: Deploy to GitHub Pages
54+
id: deployment
55+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
3+
*.jl.*.cov
4+
*.jl.cov
5+
*.jl.mem
6+
Manifest.toml
7+
docs
8+
*benchmarks_output.json
9+
10+
.vscode

benchmarks/data.js

Lines changed: 8408 additions & 0 deletions
Large diffs are not rendered by default.

benchmarks/favicon.ico

16.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)