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 f7d058e commit 0183e80Copy full SHA for 0183e80
.github/workflows/web.yml
@@ -20,7 +20,10 @@ jobs:
20
cd docs
21
npm install
22
npm run build
23
- mv ../api/ ./build/
+ if [ -d ../api/ ]
24
+ then
25
+ mv ../api/ ./build/
26
+ fi
27
- name: Deploy 🚀
28
uses: JamesIves/github-pages-deploy-action@v4
29
with:
docs/docusaurus.config.js
@@ -14,7 +14,7 @@ const config = {
14
url: 'https://kelvin-olaiya.github.io',
15
// Set the /<baseUrl>/ pathname under which your site is served
16
// For GitHub pages deployment, it is often '/<projectName>/'
17
- baseUrl: '/scala-project-template/',
+ baseUrl: '/Prolog-as-scalaDSL/',
18
// baseUrl: '/',
19
// GitHub pages deployment config.
0 commit comments