Skip to content

Commit

Permalink
fix #875
Browse files Browse the repository at this point in the history
  • Loading branch information
uNmAnNeR committed Jun 19, 2023
1 parent 412372b commit 68ebe8d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Expand Up @@ -35,6 +35,7 @@ jobs:
- run: npm ci
- run: npm run make
- run: npm run coverage
- run: npm run docs
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
Expand All @@ -45,12 +46,11 @@ jobs:
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./docs/_site
- run: npm run docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/_site
path: ./_site

# Deploy job
deploy:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Expand Up @@ -2,8 +2,7 @@ node_modules/
coverage/
dist/
esm/
docs/_site/
docs/api/
_site/
*.log
.nyc_output
.DS_Store
Expand Down
1 change: 1 addition & 0 deletions docs/_config.yml
Expand Up @@ -5,3 +5,4 @@ baseurl: ""
google_analytics: UA-40774777-5
plugins:
- jekyll-seo-tag
keep_files: [api]
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -62,7 +62,7 @@
"watch:core": "lerna run watch --scope imask --stream",
"watch:vue": "lerna run watch --scope vue-imask --stream",
"watch:react": "lerna run watch --scope react-imask --stream",
"watch:docs": "bundle exec jekyll serve --livereload --source docs --destination docs/_site"
"watch:docs": "npm run docs && bundle exec jekyll serve --livereload --source docs --destination _site"
},
"collective": {
"type": "opencollective",
Expand Down
2 changes: 1 addition & 1 deletion typedoc.json
Expand Up @@ -3,5 +3,5 @@
"name": "IMask",
"entryPointStrategy": "packages",
"includeVersion": true,
"out": "./docs/_site/api"
"out": "./_site/api"
}

0 comments on commit 68ebe8d

Please sign in to comment.