Skip to content

Commit 8b02671

Browse files
authored
Add Support for Op chains to tesseract (#373)
1 parent 74859b3 commit 8b02671

File tree

7 files changed

+3510
-2175
lines changed

7 files changed

+3510
-2175
lines changed

.github/workflows/docs.yml

+43-43
Original file line numberDiff line numberDiff line change
@@ -2,64 +2,64 @@
22
name: Deploy Documentation
33

44
on:
5-
# Runs on pushes targeting the default branch
6-
push:
7-
branches: ['main']
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
88

9-
# Allows you to run this workflow manually from the Actions tab
10-
workflow_dispatch:
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
1111

1212
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
1313
permissions:
14-
contents: read
15-
pages: write
16-
id-token: write
14+
contents: read
15+
pages: write
16+
id-token: write
1717

1818
# Allow one concurrent deployment
1919
concurrency:
20-
group: 'pages'
21-
cancel-in-progress: true
20+
group: "pages"
21+
cancel-in-progress: true
2222

2323
env:
24-
GA_ID: ${{ secrets.GA_ID }}
24+
GA_ID: ${{ secrets.GA_ID }}
2525

2626
jobs:
27-
# Single deploy job since we're just deploying
28-
deploy:
29-
environment:
30-
name: github-pages
31-
url: ${{ steps.deployment.outputs.page_url }}
32-
runs-on: ubuntu-latest
33-
defaults:
34-
run:
35-
working-directory: ./docs
36-
steps:
37-
- name: Checkout
38-
uses: actions/checkout@v4
27+
# Single deploy job since we're just deploying
28+
deploy:
29+
environment:
30+
name: github-pages
31+
url: ${{ steps.deployment.outputs.page_url }}
32+
runs-on: ubuntu-latest
33+
defaults:
34+
run:
35+
working-directory: ./docs
36+
steps:
37+
- name: Checkout
38+
uses: actions/checkout@v4
3939

40-
- name: Set up Node
41-
uses: actions/setup-node@v3
40+
- name: Set up Node
41+
uses: actions/setup-node@v3
4242

43-
with:
44-
node-version: 18
45-
cache: "npm"
46-
cache-dependency-path: "docs"
43+
with:
44+
node-version: 18
45+
cache: "npm"
46+
cache-dependency-path: "docs"
4747

48-
- name: Install dependencies
49-
run: npm install
48+
- name: Install dependencies
49+
run: npm install
5050

51-
- name: Build
52-
run: npm run build
51+
- name: Build
52+
run: npm run build
5353

54-
- name: Setup Pages
55-
uses: actions/configure-pages@v3
54+
- name: Setup Pages
55+
uses: actions/configure-pages@v5
5656

57-
- name: Upload artifact
58-
uses: actions/upload-pages-artifact@v2
59-
with:
60-
# Upload dist repository
61-
path: './docs/dist'
57+
- name: Upload artifact
58+
uses: actions/upload-pages-artifact@v3
59+
with:
60+
# Upload dist repository
61+
path: "./docs/dist"
6262

63-
- name: Deploy to GitHub Pages
64-
id: deployment
65-
uses: actions/deploy-pages@v2
63+
- name: Deploy to GitHub Pages
64+
id: deployment
65+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)