From f1fb8e057daf787df2c8bf68da13dad5c7e1a9df Mon Sep 17 00:00:00 2001 From: Holden Date: Tue, 17 Dec 2024 10:51:44 -0500 Subject: [PATCH] CI: Retry MacOS DMG Upload --- .github/actions/upload/action.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/upload/action.yml b/.github/actions/upload/action.yml index f41bad71cb1..c11debb756e 100644 --- a/.github/actions/upload/action.yml +++ b/.github/actions/upload/action.yml @@ -22,10 +22,12 @@ runs: using: "composite" steps: - name: Save artifact - uses: actions/upload-artifact@v4 + uses: Wandalen/wretry.action@master with: - name: ${{ inputs.artifact_name }} - path: ${{ runner.temp }}/shadow_build_dir/${{ inputs.source }}/${{ inputs.artifact_name }} + action: actions/upload-artifact@v4 + with: | + name: ${{ inputs.artifact_name }} + path: ${{ runner.temp }}/shadow_build_dir/${{ inputs.source }}/${{ inputs.artifact_name }} - name: Configure AWS Credentials if: ${{ github.event_name == 'push' && !github.event.pull_request.head.repo.fork && inputs.aws_key_id != '' && inputs.aws_secret_access_key != '' }}