diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..79f17f33ec9e9780d5e20303a9d2ce266c3758c2 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +image: alpine:latest + +pages: + stage: deploy + script: + - apk add --no-cache nodejs + - apk add --no-cache npm + - npm install -g pnpm + - pnpm install + - npm run build + - cp -r _site ./public/ + artifacts: + paths: + - public + only: + - master