Skip to content
Snippets Groups Projects

Add .gitlab-ci.yml to create public artifact

Merged Lil-Missy requested to merge lil-missy-master-patch-47781 into master
1 file
+ 13
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 13
0
 
image: alpine:latest
 
 
pages:
 
stage: deploy
 
script:
 
- mkdir .public
 
- cp -r * .public
 
- mv .public public
 
artifacts:
 
paths:
 
- public
 
only:
 
- master
Loading