mirror of https://github.com/zulip/zulip.git
github: Enable retention periods for uploaded artifacts.
This prevents Zulip CI from eventually consuming large amounts of storage on one's GitHub account. I picked a longer retention period for the Puppeteer artifacts because humans look at those; the production tarballs are unlikely to be used 10 minutes after the run completes as they are just for the next stage fo the build; certainly 14 days seems ample for any debugging.
This commit is contained in:
parent
eae14baa05
commit
b6ec66e972
|
@ -97,6 +97,7 @@ jobs:
|
|||
with:
|
||||
name: production-tarball
|
||||
path: /tmp/production-build
|
||||
retention-days: 14
|
||||
|
||||
production_install:
|
||||
strategy:
|
||||
|
|
|
@ -148,6 +148,7 @@ jobs:
|
|||
with:
|
||||
name: puppeteer
|
||||
path: ./var/puppeteer
|
||||
retention-days: 60
|
||||
|
||||
- name: Check development database build
|
||||
if: ${{ matrix.is_focal }}
|
||||
|
|
Loading…
Reference in New Issue