diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-05-02 13:30:04 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-05-02 13:30:04 +0200 |
commit | 2b148a07e44c7f587235b4e2495c32b772e00782 (patch) | |
tree | d18e255eb05d228850345e89112445a284abe79a /.gitlab-ci.yml | |
parent | ce7417cde8b08d9486da98fa3cd46c11ebdac078 (diff) | |
download | pdf-over-2b148a07e44c7f587235b4e2495c32b772e00782.tar.gz pdf-over-2b148a07e44c7f587235b4e2495c32b772e00782.tar.bz2 pdf-over-2b148a07e44c7f587235b4e2495c32b772e00782.zip |
various pom cleanups, mostly variable names
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bba4944d..fa8697a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ build-windows: artifacts: name: "PDFOver (Windows) on $CI_COMMIT_REF_SLUG" paths: - - "pdf-over-build/pdf-over_windows.zip" + - "pdf-over-build/*" expire_in: 1 day # gitlab does not apply this to the latest successful run, only previous runs build-linux: @@ -31,7 +31,7 @@ build-linux: artifacts: name: "PDFOver (Linux) on $CI_COMMIT_REF_SLUG" paths: - - "pdf-over-build/pdf-over_linux.jar" + - "pdf-over-build/*" expire_in: 1 day build-mac: @@ -47,7 +47,7 @@ build-mac: artifacts: name: "PDFOver (Mac) on $CI_COMMIT_REF_SLUG" paths: - - "pdf-over-build/pdf-over_mac.zip" + - "pdf-over-build/*" expire_in: 1 day build-mac-aarch64: @@ -63,5 +63,5 @@ build-mac-aarch64: artifacts: name: "PDFOver (Mac M1) on $CI_COMMIT_REF_SLUG" paths: - - "pdf-over-build/pdf-over_mac-aarch64.zip" + - "pdf-over-build/*" expire_in: 1 day |