14 lines
166 B
YAML
14 lines
166 B
YAML
|
stages:
|
||
|
- build
|
||
|
|
||
|
build:
|
||
|
image: wiidocker:latest
|
||
|
stage: build
|
||
|
only:
|
||
|
- master
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- publish/
|
||
|
script:
|
||
|
- make && make publish
|