diff options
author | cyBerta <cyberta@riseup.net> | 2019-12-08 23:07:48 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2019-12-08 23:07:48 +0100 |
commit | dfc9c26427871ee6b65e7fbf1d5384c8208e9c8b (patch) | |
tree | af06321f1d38e42261a31c006e98c2f3bbf2507a /.gitlab-ci.yml | |
parent | 17393c379760673f3c036051f1087f2adae5ef37 (diff) |
add currentReleases directory to output path for release and beta CI builds
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fac3a92f..65ae0a25 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -121,6 +121,7 @@ build_release: artifacts: paths: - app/build/outputs/ + - currentReleases/ - normalRelease.log when: always expire_in: 1 week @@ -134,6 +135,7 @@ build_fdroid_beta_release: artifacts: paths: - app/build/outputs/ + - currentReleases/ - normalBeta.log when: always expire_in: 1 week @@ -147,6 +149,7 @@ build_custom_release: artifacts: paths: - app/build/outputs/ + - currentReleases/ - customRelease.log when: always expire_in: 1 week @@ -160,6 +163,7 @@ build_fdroid_custom_beta_release: artifacts: paths: - app/build/outputs/ + - currentReleases/ - customBeta.log when: always expire_in: 1 week |