Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dillonzq/LoveIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-02-21 20:14:01 +0300
committerDillon <dillonzq@outlook.com>2020-02-21 20:14:01 +0300
commit850e8f380e09e15350a03c95d73a57230dafde38 (patch)
treef4b5bbd69bd679b0e116f73857e781cb2b5c4b27 /.circleci
parent0d83302529e37f51ad586caf699714500f993101 (diff)
fix(summary): use description as summary when summary is empty
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml17
1 files changed, 4 insertions, 13 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index ed875665..b13f3452 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,11 +1,6 @@
version: 2.1
jobs:
build-check:
- parameters:
- example-site-path:
- type: string
- theme-path:
- type: string
docker:
- image: cibuilds/hugo:0.62
working_directory: ~/LoveIt
@@ -13,14 +8,10 @@ jobs:
- checkout
- run: git submodule sync
- run: git submodule update --init
- - run:
- command: |
- cd << parameters.example-site-path >> && pwd
- HUGO_ENV=production hugo --themesDir << parameters.theme-path >> -v --gc
- htmlproofer public --check-html --allow-hash-href --empty-alt-ignore --disable-external
+ - run: HUGO_ENV=production hugo --source=exampleSite -v --gc
+ - run: htmlproofer exampleSite/public --check-html --allow-hash-href --empty-alt-ignore --disable-external
+
workflows:
build-check-exampleSite:
jobs:
- - build-check:
- example-site-path: exampleSite
- theme-path: ../..
+ - build-check