Change the path-to-checkout directory:

```
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -8,7 +8,7 @@ jobs:
       - checkout
       - run:
           name: "Run Hugo"
-          command: HUGO_ENV=production hugo -v -s src/
+          command: HUGO_ENV=production hugo -v -s /root/project/
       - run:
           name: "Test Website"
           command: htmlproofer src/public --allow-hash-href --check-html --empty-alt-ignore --disable-external
```
This commit is contained in:
Kazuhiro MUSASHI 2019-05-04 18:56:53 +08:00
parent 4307a8de8a
commit c52c1d60d8
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ jobs:
- checkout
- run:
name: "Run Hugo"
command: HUGO_ENV=production hugo -v -s src/
command: HUGO_ENV=production hugo -v -s /root/project/
- run:
name: "Test Website"
command: htmlproofer src/public --allow-hash-href --check-html --empty-alt-ignore --disable-external