We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08c8b1 commit aaed5cdCopy full SHA for aaed5cd
.github/workflows/release.yml
@@ -30,7 +30,14 @@ jobs:
30
DOCU_NOTION_CONCEPT_ROOT_PAGE: ${{ secrets.DOCU_NOTION_CONCEPT_ROOT_PAGE }}
31
DOCU_NOTION_DEV_ROOT_PAGE: ${{ secrets.DOCU_NOTION_DEV_ROOT_PAGE }}
32
DOCU_NOTION_CONTRACTS_ROOT_PAGE: ${{ secrets.DOCU_NOTION_CONTRACTS_ROOT_PAGE }}
33
- run: yarn pull
+ run: |
34
+ # Ensure docs directory structure exists
35
+ mkdir -p docs/concepts docs/dev docs/contracts
36
+ # Pull content from Notion
37
+ yarn pull
38
+ # Verify the structure
39
+ echo "Checking docs structure..."
40
+ ls -R docs/
41
- name: Commit
42
uses: stefanzweifel/git-auto-commit-action@v4
43
with:
0 commit comments