Skip to content

Commit 1968e8e

Browse files
committed
Add .gitlab-ci.yml to build static site at GitLab Pages
1 parent 90af515 commit 1968e8e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.gitlab-ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pages:
2+
stage: deploy
3+
script:
4+
- mkdir .public
5+
- cp -r * .public
6+
- mv .public public
7+
artifacts:
8+
paths:
9+
- public
10+
only:
11+
- master

0 commit comments

Comments
 (0)