We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 608d585 commit c737133Copy full SHA for c737133
.gitlab-ci.yml
@@ -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