Skip to content

Commit 9459060

Browse files
committed
ci(pages): migrate to Node 24, add debug step and update privacy date
1 parent a314c7f commit 9459060

2 files changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ['main']
66
workflow_dispatch:
77

88
permissions:
@@ -11,12 +11,16 @@ permissions:
1111
id-token: write
1212

1313
concurrency:
14-
group: "pages"
14+
group: 'pages'
1515
cancel-in-progress: false
1616

1717
jobs:
1818
build:
1919
runs-on: ubuntu-latest
20+
21+
env:
22+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
23+
2024
steps:
2125
- name: Checkout repository
2226
uses: actions/checkout@v4
@@ -33,6 +37,13 @@ jobs:
3337
- name: Build Tailwind CSS
3438
run: npm run build:css
3539

40+
- name: Debug docs folder
41+
run: |
42+
echo "===== docs folder ====="
43+
ls -la docs
44+
echo "===== tailwind.css content preview ====="
45+
head -n 20 docs/tailwind.css || echo "tailwind.css NOT FOUND"
46+
3647
- name: Upload Pages artifact
3748
uses: actions/upload-pages-artifact@v3
3849
with:
@@ -47,4 +58,4 @@ jobs:
4758
steps:
4859
- name: Deploy to GitHub Pages
4960
id: deployment
50-
uses: actions/deploy-pages@v4
61+
uses: actions/deploy-pages@v4

docs/privacy/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
Privacy Policy
164164
</h1>
165165
<p class="font-mono text-sm font-bold text-gray-500 dark:text-[#A3A3A3]">
166-
LAST UPDATED: <span class="text-[#7C3AED]">APRIL 2026</span>
166+
LAST UPDATED: <span class="text-[#7C3AED]">APRIL 18, 2026</span>
167167
</p>
168168
</div>
169169

0 commit comments

Comments
 (0)