From e39263df0499c55cd3ad2186678031a09451b10c Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Tue, 18 Jul 2023 16:36:45 +0200 Subject: [PATCH] Keep maven-repo artifact 7 days instead of 1 This is useful when we want to restart a failed build. It usually happens in the next few days and we need the artifact to be around. --- .github/workflows/ci-actions-incremental.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-actions-incremental.yml b/.github/workflows/ci-actions-incremental.yml index 4b355461d2237..11c1d6953233f 100644 --- a/.github/workflows/ci-actions-incremental.yml +++ b/.github/workflows/ci-actions-incremental.yml @@ -180,7 +180,7 @@ jobs: with: name: maven-repo path: maven-repo.tgz - retention-days: 1 + retention-days: 7 - name: Delete Local Artifacts From Cache shell: bash run: rm -r ~/.m2/repository/io/quarkus @@ -765,4 +765,4 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} build-reports-artifacts-path: build-reports-artifacts - forks-only: true \ No newline at end of file + forks-only: true