diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b38243a..2b332e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -230,12 +230,17 @@ jobs: go-version-file: "go.mod" id: go - - name: Download all artifacts - uses: actions/download-artifact@v4 + # FIXME: Workaround for https://github.com/actions/download-artifact/issues/249 + - name: Download all artifacts with retry + uses: Wandalen/wretry.action@master with: - path: bin/ - pattern: bin-* - merge-multiple: true + action: actions/download-artifact@v4 + with: | + path: bin/ + pattern: bin-* + merge-multiple: true + attempt_limit: 5 + attempt_delay: 1000 - name: Upload to GitHub Releases run: |