From 28fc93e9c5b565620b15da29ebe9a8beb391e78e Mon Sep 17 00:00:00 2001 From: Simon Edwards Date: Sat, 24 Feb 2024 16:54:20 +0100 Subject: [PATCH] Another attempt at fixing the Windows release process --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5364f017..38cc6d73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -131,7 +131,8 @@ jobs: - name: Upload to GH release if: startsWith(github.ref, 'refs/tags/') run: | - gh release upload "${{github.ref_name}}" ./tmp-jam-pack-nodegui/jam-pack-nodegui-work/*.zip + gh release upload "${{github.ref_name}}" (get-item ./tmp-jam-pack-nodegui/jam-pack-nodegui-work/*.exe) + gh release upload "${{github.ref_name}}" (get-item ./tmp-jam-pack-nodegui/jam-pack-nodegui-work/*.zip) env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}