Skip to content

Commit 417cd96

Browse files
authored
Fix/vitepress 3 (#167)
* Fix VitePress deployment path and ensure .nojekyll file is added correctly * Bump version to 3.4.84
1 parent 6551f6c commit 417cd96

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/deploy-vitepress.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ jobs:
3030
run: npm run docs:build
3131

3232
- name: Add .nojekyll file
33-
run: touch docs/.vitepress/dist/.nojekyll
33+
run: |
34+
if [ -d dist ]; then
35+
touch dist/.nojekyll
36+
fi
3437
3538
- name: Deploy to GitHub Pages
3639
uses: peaceiris/actions-gh-pages@v4
3740
with:
3841
github_token: ${{ secrets.GITHUB_TOKEN }}
39-
publish_dir: docs/.vitepress/dist
42+
publish_dir: dist

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@myissue/vue-website-page-builder",
3-
"version": "3.4.83",
3+
"version": "3.4.84",
44
"description": "Vue 3 page builder component with drag & drop functionality.",
55
"type": "module",
66
"main": "./dist/vue-website-page-builder.umd.cjs",

0 commit comments

Comments
 (0)