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 0d5ebbb commit 0e37206Copy full SHA for 0e37206
.github/workflows/compile.yml
@@ -36,4 +36,4 @@ jobs:
36
if: github.ref == 'refs/heads/main'
37
with:
38
github_token: ${{ secrets.GITHUB_TOKEN }}
39
- publish_dir: ./docs
+ publish_dir: ./export
docs/index.html
src/index.js
@@ -1,8 +1,8 @@
1
var fs = require('fs');
2
3
-var fileName = './docs/index.html';
4
-if (!fs.existsSync("./docs")) {
5
- fs.mkdirSync("./docs");
+var fileName = './export/index.html';
+if (!fs.existsSync("./export")) {
+ fs.mkdirSync("./export");
6
}
7
var stream = fs.createWriteStream(fileName);
8
0 commit comments