Update .gitlab-ci.yml file
This commit is contained in:
parent
2f60079490
commit
8277e6e92c
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ build:
|
||||||
- ./gradlew :daemon-all shadowJar
|
- ./gradlew :daemon-all shadowJar
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build/libs/
|
- daemon/build/libs/
|
||||||
expire_in: 7 days
|
expire_in: 7 days
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
@ -22,7 +22,7 @@ release:
|
||||||
image: alpine:latest # Use a minimal image for release preparation
|
image: alpine:latest # Use a minimal image for release preparation
|
||||||
script:
|
script:
|
||||||
- mkdir -p release
|
- mkdir -p release
|
||||||
- cp build/libs/*.jar release/
|
- cp daemon/build/libs/*.jar release/
|
||||||
- echo "Release artifact generated."
|
- echo "Release artifact generated."
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
|
|
Loading…
Reference in a new issue