We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758b89f commit 92d8daeCopy full SHA for 92d8dae
1 file changed
.github/workflows/pages.yml
@@ -22,6 +22,18 @@ jobs:
22
- name: Checkout repository
23
uses: actions/checkout@v4
24
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v4
27
+ with:
28
+ python-version: '3.x'
29
+
30
+ - name: Install gdown
31
+ run: pip install gdown
32
33
+ - name: Download folder
34
+ # Use the secret from GitHub repository settings
35
+ run: gdown --folder ${{ secrets.GDRIVE_FOLDER_ID }} -O src/routes/posts/mdarticles/[slug]/
36
37
- name: Setup Node.js
38
uses: actions/setup-node@v4
39
with:
0 commit comments