Hi,
I am on GitLab.com, for a private directory.
Repo is a flavor of Gatsby (docz)
The build stage is successful.
Artifact is produced, seemingly ok (link internaly are brokem but index is loading when I go and browse the artifact).
But the deploy is stuck.
I have tried to relaunch the pipeline, to remove etc.
But without much success.
- CI configuration
.gitlab-ci.yml
image: node:10.20.1
pages:
only:
- master
script:
- npm install
- npm run build
- mv .docz/dist/* public/
artifacts:
paths:
- public
cache:
paths:
- node_modules
Any idea?