From c70b8f4effa9d5785cd6bdabd216743e5acfde61 Mon Sep 17 00:00:00 2001 From: florianvazelle Date: Wed, 3 Jan 2024 21:02:44 +0100 Subject: [PATCH] ci: attempt to retry the export --- .github/workflows/release-packaging.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-packaging.yml b/.github/workflows/release-packaging.yml index 1240a12..b54775b 100644 --- a/.github/workflows/release-packaging.yml +++ b/.github/workflows/release-packaging.yml @@ -60,8 +60,13 @@ jobs: - uses: ./.github/actions/setup-x11-drivers + # Retry multiple times, always in CI, godot freeze when reimporting assets - name: Export - run: just export + uses: nick-fields/retry@v2 + with: + timeout_minutes: 10 + max_attempts: 3 + command: just export - name: Upload artifact uses: actions/upload-artifact@v4