aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAhmed M Alaa <aa@4b.cx>2022-12-03 21:01:01 +0200
committerAhmed M Alaa <aa@4b.cx>2022-12-03 21:01:01 +0200
commit028f23e96dd4c6a86465cb616be84480ac3a7a1e (patch)
treecaffe481ff29aab5111e69b242cfc072a84912b6 /.gitlab-ci.yml
init: just ported the theme
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..e6e3100
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,16 @@
+image: alpine:latest
+pages:
+ script:
+ # Install the zola package from the alpine community repositories
+ - apk add --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ zola
+ # Execute zola build
+ - zola build
+
+ artifacts:
+ paths:
+ # Path of our artifacts
+ - public
+
+ # This config will only publish changes that are pushed on the master branch
+ only:
+ - master \ No newline at end of file