From ed1d01c7d36efb0d6fc681fec797f22db85dd73e Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Mon, 3 Jan 2022 03:29:19 +0100 Subject: [PATCH] Fix WIndows artifact upload Fix `if statement` of the Windows binary artifact upload of GH Actions --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4cdebf149..2ff64a5e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -95,7 +95,7 @@ jobs: - uses: actions/upload-artifact@v2 if: | - github.event.pull_request.head.repo.full_name == github.repository + startsWith(runner.os, 'windows') with: name: Windows path: ./dist/electron/*.* -- 2.45.3