From e5dc4cd278e3570af8a5238f2e70560ddd46b9ce Mon Sep 17 00:00:00 2001 From: Alex Gomez Date: Thu, 2 Jan 2025 16:32:59 +0100 Subject: [PATCH] remove overwrite:true on upload-artifact --- .github/actions/upload-artifacts/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/upload-artifacts/action.yml b/.github/actions/upload-artifacts/action.yml index 5ff294a09d..e4b23e423a 100644 --- a/.github/actions/upload-artifacts/action.yml +++ b/.github/actions/upload-artifacts/action.yml @@ -29,14 +29,14 @@ runs: name: pr path: __pr/ retention-days: 10 - overwrite: true + - name: store static build uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0 with: name: '${{ inputs.BUILD_ARTIFACT_NAME }}' path: out/ retention-days: 10 - overwrite: true + - name: store nextjs build if: inputs.NEXTJS_BUILD == 'true' uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 # v3.0.0 @@ -46,4 +46,4 @@ runs: .next !.next/cache retention-days: 10 - overwrite: true +