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 8139a63 commit af4fd0eCopy full SHA for af4fd0e
.github/workflows/deploy.yml
@@ -24,11 +24,13 @@ jobs:
24
- name: Install dependencies
25
run: npm install
26
27
+ - name: Install tsx
28
+ run: npm install tsx
29
+
30
- name: Generate SEO files
31
run: |
- npx tsc --project tsconfig.scripts.json
- node dist-scripts/generate-sitemap.js || echo "Sitemap generation failed, continuing..."
- node dist-scripts/generate-rss.js || echo "RSS generation failed, continuing..."
32
+ npx tsx scripts/generate-sitemap.ts || echo "Sitemap generation failed, continuing..."
33
+ npx tsx scripts/generate-rss.ts || echo "RSS generation failed, continuing..."
34
35
- name: Build and Export
36
0 commit comments