Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths:
- "docs/**"
- ".github/workflows/static.yml"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -31,20 +34,20 @@ jobs:
- name: Install
run: sudo apt-get install doxygen graphviz
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Yarn Install
run: yarn install
working-directory: ${{github.workspace}}
- name: Build Website
run: yarn docs:build
working-directory: ${{github.workspace}}
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v4
with:
# Upload entire repository
path: 'docs/public'
path: "docs/public"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
3 changes: 0 additions & 3 deletions docs/docs.en/Lazy.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,6 @@ In the above example, `task1...task4` represents a task chain consists of Lazy.

So we could assign the executor at the root the task chain simply.

我来为您翻译这段关于内存分配的内容:

Ran tool
## Memory Allocation

### User-Defined Allocator
Expand Down
Loading