From 4e43d566fd0ef05e12816494576fd42e164e05a7 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 20 Feb 2023 14:37:50 +0100 Subject: [PATCH] CI: fix Windows build upload workaround Used msys/curl instead of clang64/mingw-w64-clang-x86_64-curl for the upload. For whatever reason, the other curl variant ceased to collaborate with GitHub, see failed run (and subsequent ones): https://github.com/CESNET/UltraGrid/actions/runs/4223917061/jobs/7334218587 I didn't manage to reproduce it on a local Windows machine so there is perhaps some hidden factor present. This change is just a workaround and should be removed when not needed. --- .github/workflows/ccpp.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index a77a1104a..bdce178b5 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -332,6 +332,7 @@ jobs: if: (github.repository == 'CESNET/UltraGrid' && github.ref == 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') run: | C:\msys64\usr\bin\bash -cel 'cd build; zip -9 -r UltraGrid-$VERSION-win64.zip UltraGrid-$VERSION-win64 + PATH=/usr/bin:$PATH # TOREMOVE when not needed (see git commit message) $GITHUB_WORKSPACE/.github/scripts/replace-asset.sh $TAG UltraGrid-$VERSION-win64.zip application/zip Windows%20build' - name: Upload Build if: steps.upload-release.conclusion == 'skipped'