From 810df8d01c6e2560f5fbea29d2cedb433dbf4bd3 Mon Sep 17 00:00:00 2001 From: swurl Date: Thu, 5 Jun 2025 18:55:50 +0000 Subject: [PATCH] force 2 day retention on artifact uploads (#157) Signed-off-by: swurl Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/157 Co-authored-by: swurl Co-committed-by: swurl --- .github/workflows/build.yml | 4 ++++ .github/workflows/trigger_release.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d90e424fe8..51fd616833 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,7 @@ jobs: - name: Upload uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: source.zip path: artifacts/ @@ -77,6 +78,7 @@ jobs: - name: Upload Windows artifacts uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: ${{ matrix.target }}.zip path: artifacts/* @@ -104,6 +106,7 @@ jobs: - name: Upload Linux artifacts uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: linux.zip path: ./*.AppImage @@ -140,5 +143,6 @@ jobs: - name: Upload Android artifacts uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: android.zip path: artifacts/* diff --git a/.github/workflows/trigger_release.yml b/.github/workflows/trigger_release.yml index 05e53bd5ae..48f799818c 100644 --- a/.github/workflows/trigger_release.yml +++ b/.github/workflows/trigger_release.yml @@ -19,6 +19,7 @@ jobs: - name: Upload uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: source.zip path: artifacts/ @@ -74,6 +75,7 @@ jobs: - name: Upload Windows artifacts uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: ${{ matrix.target }}.zip path: artifacts/* @@ -101,6 +103,7 @@ jobs: - name: Upload Linux artifacts uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: linux.zip path: ./*.AppImage* @@ -137,6 +140,7 @@ jobs: - name: Upload Android artifacts uses: forgejo/upload-artifact@v4 with: + retention-days: 2 name: android.zip path: artifacts/*