We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 869071d commit a8fd6afCopy full SHA for a8fd6af
.github/workflows/notion-sync.yml
@@ -34,7 +34,9 @@ jobs:
34
35
# Step 4: Run the Notion sync script
36
- name: Run Notion sync
37
- run: node sync_notion.js
+ run: |
38
+ echo '${{ secrets.NOTION_PAGE_IDS }}' > pages.json
39
+ node sync_notion.js
40
working-directory: ./notion
41
env:
42
NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }}
.gitignore
@@ -1,3 +1,4 @@
1
.env
2
node_modules/
3
.DS_Store
4
+notion/pages.json
0 commit comments