Skip to content

Commit c737133

Browse files
committed
add CI
1 parent 608d585 commit c737133

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.gitlab-ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Official framework image. Look for the different tagged releases at:
2+
# https://hub.docker.com/r/library/node/tags/
3+
image: node:19-alpine
4+
5+
stages:
6+
- deploy
7+
8+
pages:
9+
stage: deploy
10+
script:
11+
#- yarn config set unsafe-perm true
12+
- yarn global add @marp-team/marp-cli
13+
- marp slides.md --theme-set themes --output index.html
14+
- mkdir -p public
15+
- cp index.html public/
16+
- cp -r themes/ assets/ public/
17+
artifacts:
18+
paths:
19+
- public
20+
only:
21+
- master

0 commit comments

Comments
 (0)