imgui-quilt/.gitlab-ci.yml

20 lines
247 B
YAML
Raw Permalink Normal View History

2023-06-21 18:30:51 -04:00
image: gradle:8-jdk17
2023-06-19 11:00:09 -04:00
stages:
- build
- publish
build:
stage: build
script:
- 'gradle assemble'
artifacts:
paths:
- build/libs/*.jar
expire_in: 1 week
publish-maven:
stage: publish
script:
- 'gradle publish'