Skip to content

Commit aaed5cd

Browse files
authored
Update release.yml
Signed-off-by: 0xbentobyte <[email protected]>
1 parent e08c8b1 commit aaed5cd

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@ jobs:
3030
DOCU_NOTION_CONCEPT_ROOT_PAGE: ${{ secrets.DOCU_NOTION_CONCEPT_ROOT_PAGE }}
3131
DOCU_NOTION_DEV_ROOT_PAGE: ${{ secrets.DOCU_NOTION_DEV_ROOT_PAGE }}
3232
DOCU_NOTION_CONTRACTS_ROOT_PAGE: ${{ secrets.DOCU_NOTION_CONTRACTS_ROOT_PAGE }}
33-
run: yarn pull
33+
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/
3441
- name: Commit
3542
uses: stefanzweifel/git-auto-commit-action@v4
3643
with:

0 commit comments

Comments
 (0)