From a6fc5264d939bbf37c7e334288375d082e7033de Mon Sep 17 00:00:00 2001 From: Holger Teutsch Date: Wed, 20 Nov 2024 15:59:38 +0100 Subject: [PATCH] debug --- .github/workflows/release.yaml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ba341ba..0842836 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,19 +42,14 @@ jobs: make -f Makefile.mac64 fi - - name: Upload Build Artifact XP12 - uses: actions/upload-artifact@v3 - with: - name: build-${{ matrix.os }}-xp12 - path: | - openSAM-pkg/openSAM/*_x64 + tar cvf binary.tar openSAM-pkg*/openSAM/*_x64 - - name: Upload Build Artifact XP11 + - name: Upload Build Artifact uses: actions/upload-artifact@v3 with: - name: build-${{ matrix.os }}-xp11 + name: build-${{ matrix.os }} path: | - openSAM-pkg_XP11/openSAM/*_x64 + binary.tar release: runs-on: windows-latest @@ -101,6 +96,15 @@ jobs: run: | ls -lR ./build + - name: Consolidate platform builds + shell: bash + run: | + for t in ./build/*/binary.tar + do + tar xvf $t + done + ./mk_zip + - name: Create Release id: create_release uses: softprops/action-gh-release@v1