Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 3681594

Browse files
committed
move to ./public folder
1 parent 761b4df commit 3681594

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ jobs:
2020
uses: peaceiris/actions-gh-pages@v3
2121
with:
2222
github_token: ${{ secrets.GITHUB_TOKEN }}
23-
publish_dir: ./docs/dist

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ xcuserdata
7777
*.env
7878

7979
# built docs
80-
docs/dist
80+
public

build-docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function createHTML (header, footer, text) {
7171

7272
async function createDocs () {
7373
const docs = path.join(__dirname, 'docs')
74-
const dist = path.join(docs, 'dist')
74+
const dist = path.join(__dirname, 'public')
7575

7676
await fs.rmdir(dist, { recursive: true })
7777
await fs.mkdir(dist)

0 commit comments

Comments
 (0)