Skip to content

Commit 0e37206

Browse files
committed
z
1 parent 0d5ebbb commit 0e37206

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
if: github.ref == 'refs/heads/main'
3737
with:
3838
github_token: ${{ secrets.GITHUB_TOKEN }}
39-
publish_dir: ./docs
39+
publish_dir: ./export

docs/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var fs = require('fs');
22

3-
var fileName = './docs/index.html';
4-
if (!fs.existsSync("./docs")) {
5-
fs.mkdirSync("./docs");
3+
var fileName = './export/index.html';
4+
if (!fs.existsSync("./export")) {
5+
fs.mkdirSync("./export");
66
}
77
var stream = fs.createWriteStream(fileName);
88

0 commit comments

Comments
 (0)