Skip to content

Commit 9cf1ff1

Browse files
authored
fix: remove retention-days limit from CodeBuild workflow artifacts (#149)
1 parent c3f86b9 commit 9cf1ff1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codebuild.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ jobs:
272272
name: ${{ env.CODEBUILD_PROJECT_NAME }}.zip
273273
path: ${{ github.workspace }}/.codebuild/downloads/${{ env.CODEBUILD_PROJECT_NAME }}.zip
274274
if-no-files-found: error
275-
retention-days: 1
275+
276276

277277
- name: Upload Evaluation Report
278278
if: ${{ !env.ACT }} # incompatible with act (upload-artifact v6)
@@ -281,7 +281,7 @@ jobs:
281281
name: evaluation.zip
282282
path: ${{ github.workspace }}/.codebuild/downloads/evaluation.zip
283283
if-no-files-found: error
284-
retention-days: 1
284+
285285

286286
- name: Upload Trend Report
287287
if: ${{ !env.ACT }} # incompatible with act (upload-artifact v6)
@@ -290,7 +290,7 @@ jobs:
290290
name: trend.zip
291291
path: ${{ github.workspace }}/.codebuild/downloads/trend.zip
292292
if-no-files-found: error
293-
retention-days: 1
293+
294294

295295
- name: Upload Report Bundle
296296
if: ${{ !env.ACT }}
@@ -303,7 +303,7 @@ jobs:
303303
|| format('report-{0}', github.ref_name) }}
304304
path: ${{ github.workspace }}/.codebuild/downloads/report-bundle.zip
305305
if-no-files-found: warn
306-
retention-days: 1
306+
307307

308308
- name: Upload artifacts to release
309309
if: startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)