From f7bf081650258eb7270ee37eb952fe3cc8bcf6d8 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 17 Dec 2021 03:50:18 +0300 Subject: [PATCH] github: try to fix artifacts uploading (YAML is worst markup language) --- .github/workflows/c-cpp.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index fbd1290f..920949f0 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -11,11 +11,15 @@ jobs: - os: ubuntu-18.04 targetos: linux targetarch: amd64 - artifacts: xash3d-fwgs-amd64.AppImage xashds-linux-amd64 + artifacts: | + xash3d-fwgs-amd64.AppImage + xashds-linux-amd64 - os: ubuntu-18.04 targetos: linux targetarch: i386 - artifacts: xash3d-fwgs-i386.AppImage xashds-linux-i386 + artifacts: | + xash3d-fwgs-i386.AppImage + xashds-linux-i386 - os: ubuntu-18.04 targetos: android @@ -63,7 +67,7 @@ jobs: run: bash scripts/gha/build_${{ matrix.targetos }}.sh - name: Upload engine (prereleases) - run: bash scripts/continious_upload.sh ${{ matrix.artifacts }} + run: bash scripts/continious_upload.sh ${{ join( matrix.artifacts, ' ' ) }} - name: Upload engine (artifacts) uses: actions/upload-artifact@v2 with: