Skip to content

Commit 8aaec99

Browse files
authored
Fix/vitepress 4 (#168)
* Fix VitePress deployment path in GitHub Actions workflow * Bump version to 3.4.85
1 parent 417cd96 commit 8aaec99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy-vitepress.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131

3232
- name: Add .nojekyll file
3333
run: |
34-
if [ -d dist ]; then
35-
touch dist/.nojekyll
34+
if [ -d .vitepress/dist ]; then
35+
touch .vitepress/dist/.nojekyll
3636
fi
3737
3838
- name: Deploy to GitHub Pages
3939
uses: peaceiris/actions-gh-pages@v4
4040
with:
4141
github_token: ${{ secrets.GITHUB_TOKEN }}
42-
publish_dir: dist
42+
publish_dir: .vitepress/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.84",
3+
"version": "3.4.85",
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)