From f1f9814e010bb96296eb4d705052ca236f534d2c Mon Sep 17 00:00:00 2001 From: Cristian Adam Date: Tue, 25 Jun 2024 15:36:07 +0200 Subject: [PATCH] Fix uploading release artifacts --- .github/workflows/build_cmake.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index e0f9c0d..fc0fc8f 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -280,7 +280,12 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - path: release + path: release-with-dirs + + - name: Fixup artifacts + run: | + mkdir release + mv release-with-dirs/*/* release/ - name: Create Release id: create_release