16 lines
283 B
YAML
16 lines
283 B
YAML
Create Application:
|
|
stage: build
|
|
script:
|
|
- chmod +x gradlew
|
|
- ./gradlew --no-daemon build
|
|
|
|
Create Documentation:
|
|
stage: build
|
|
script:
|
|
- chmod +x gradlew
|
|
- ./gradlew --no-daemon asciidoctor
|
|
artifacts:
|
|
paths:
|
|
- build/asciidoc/pdf/versabundus.pdf
|
|
|