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 1951208 commit 164dceeCopy full SHA for 164dcee
.github/workflows/deploy.yml
@@ -42,21 +42,9 @@ jobs:
42
npm install
43
npm run build
44
45
- - name: Validate artifact 📦
46
- run: |
47
- if find ./docs/.vitepress/dist -type l | read; then
48
- echo "Error: Artifact contains symlinks" >&2
49
- exit 1
50
- fi
51
- if [ $(du -s ./docs/.vitepress/dist | cut -f1) -gt 10485760 ]; then
52
- echo "Error: Artifact size exceeds 10GB" >&2
53
54
55
-
56
- name: Upload artifact ⬆️
57
- uses: actions/upload-artifact@v4
+ uses: actions/upload-pages-artifact@v3
58
with:
59
- name: 'github-pages'
60
path: './docs/.vitepress/dist'
61
62
- name: Deploy to GitHub Pages 🚀
0 commit comments