Newer
Older
image: alpine:latest
pages:
stage: deploy
script:
- apk add --no-cache nodejs
- apk add --no-cache npm
- npm install -g pnpm
- pnpm install
- cp -r _site ./public/
artifacts:
paths:
- public
only:
- master