From c3140363f7ea8843ce5a313032d8127e88a4a05c Mon Sep 17 00:00:00 2001 From: antony-jr Date: Sat, 18 Nov 2023 01:03:45 +0530 Subject: [PATCH] fix upload --- .github/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bc5bd13..1544eaf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -54,12 +54,13 @@ jobs: run: | cd ${{ github.workspace }}/output/ 7z a windows-Qt-5.15.11-${{ matrix.platform }}.zip QArchive + ls -R . + 7z l windows-Qt-5.15.11-${{ matrix.platform }}.zip - name: Upload uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: "${{ github.workspace }}/output/*.zip" + artifacts: "${{ github.workspace }}/output/windows-Qt-5.15.11-${{ matrix.platform }}.zip" tag: prebuilt prerelease: true -