Skip to content

Commit cfd085d

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

File tree

1,769 files changed

+213471
-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

+213471
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
jobs:
16+
# Build job
17+
build:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
with:
23+
ref: "gh-pages"
24+
fetch-depth: 0 # Not needed if lastUpdated is not enabled
25+
- name: Setup Pages
26+
uses: actions/configure-pages@v5
27+
- name: Fix Symbolic links for Vitepress
28+
run: |
29+
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 ..' {} \;
30+
ls -al;
31+
- name: Build with Jekyll
32+
uses: actions/jekyll-build-pages@v1
33+
with:
34+
source: ./
35+
destination: ./_site
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
39+
# Deployment job
40+
deploy:
41+
environment:
42+
name: github-pages
43+
url: ${{ steps.deployment.outputs.page_url }}
44+
runs-on: ubuntu-latest
45+
needs: build
46+
steps:
47+
- name: Deploy to GitHub Pages
48+
id: deployment
49+
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)