aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-03-19 20:22:03 -0700
committerGravatar Tom Willemse2020-03-19 20:22:03 -0700
commitc58e1e28fd11c96f2749b0a398e092d514869563 (patch)
treeeaf8a8c28996ac9978fccdd0d39e6ff5a11d65fa /.gitlab-ci.yml
parent830432c2381acb91acbe614767d8f223e4fc7fb9 (diff)
downloadnew-ryuslash.org-c58e1e28fd11c96f2749b0a398e092d514869563.tar.gz
new-ryuslash.org-c58e1e28fd11c96f2749b0a398e092d514869563.zip
Fix publishing
Since everything is published to public/ instead of public_html/ now, I don’t need to move any directory.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e8c0574..d31fac1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,16 +12,16 @@ build-html:
make html
artifacts:
paths:
- - public_html/
+ - public/
build-css:
stage: build
image: finalgene/lessc:3.10
script:
- lessc src/less/main.less public_html/assets/css/main.css
+ lessc src/less/main.less public/assets/css/main.css
artifacts:
paths:
- - public_html/
+ - public/
pages:
stage: deploy
@@ -29,7 +29,7 @@ pages:
- build-html
- build-css
script:
- - mv public_html public
+ - echo "Done"
artifacts:
paths:
- public