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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-02-16 17:35:31 +0300
committerDillon <dillonzq@outlook.com>2020-02-16 17:35:31 +0300
commitef06c4e23fb28d6d7059016d13af763787a735b8 (patch)
tree8a07e21860f0327beee05d0f3889eb76efa38d15 /.circleci
parentca1643957efcf003e511b89a9ef4c3f29d45880b (diff)
fix(ci): fix circleci config bug
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 14b80c1..d7bd8a8 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -13,13 +13,12 @@ jobs:
- checkout
- run: git submodule sync
- run: git submodule update --init
- - run: cd << parameters.example-site-path >>
- run:
- name: "Run Hugo"
- command: HUGO_ENV=production hugo --themesDir << parameters.theme-path >> -v --minify --gc
- - run:
- name: "Test Website"
- command: htmlproofer public --allow-hash-href --empty-alt-ignore --disable-external
+ command: |
+ cd << parameters.example-site-path >>
+ pwd
+ HUGO_ENV=production hugo --themesDir << parameters.theme-path >> -v --minify --gc
+ htmlproofer public --allow-hash-href --empty-alt-ignore --disable-external
workflows:
build-check-exampleSite:
jobs: