allow builds for non-prs (breaks fork PR builds)
This commit is contained in:
parent
e4b43abe05
commit
549e7bce75
1 changed files with 2 additions and 5 deletions
7
.github/workflows/deploy.yml
vendored
7
.github/workflows/deploy.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue