From 549e7bce755ee24231d860a9efa953dbcbdb6050 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 25 Jan 2021 14:53:07 -0500 Subject: [PATCH] allow builds for non-prs (breaks fork PR builds) --- .github/workflows/deploy.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7e05120e9..f2ed79a2a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -77,23 +77,20 @@ jobs: - uses: actions/upload-artifact@v2 if: | - startsWith(runner.os, 'linux') && - github.event.pull_request.head.repo.full_name == github.repository + startsWith(runner.os, 'linux') with: name: Linux path: ./dist/electron/*.* - uses: actions/upload-artifact@v2 if: | - startsWith(runner.os, 'mac') && - github.event.pull_request.head.repo.full_name == github.repository + startsWith(runner.os, 'mac') with: name: macOS path: ./dist/electron/*.* - uses: actions/upload-artifact@v2 if: | - startsWith(runner.os, 'windows') && github.event.pull_request.head.repo.full_name == github.repository with: name: Windows