Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit 6b1eaad

Browse files
committed
new file: .gitlab-ci.yml
1 parent d0f9ecf commit 6b1eaad

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.gitlab-ci.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
stages:
2+
- build
3+
- deploy
4+
5+
build:
6+
stage: build
7+
script:
8+
- JEKYLL_ENV=production bundle exec jekyll build
9+
tags:
10+
- jekyll
11+
artifacts:
12+
paths:
13+
- _site
14+
15+
deploy:
16+
stage: deploy
17+
script:
18+
- rsync -rtvp --delete-delay _site/ -e ssh $USER@$SERVER:$PATH_ON_SERVER
19+
tags:
20+
- jekyll

0 commit comments

Comments
 (0)