Skip to content

Commit

Permalink
Enable building PortableApps for Windows in PRs too
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Jan 31, 2025
1 parent 3d7e0fc commit 116925b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,7 @@ jobs:
path: build.artifacts\

windows_portable_x32:
# Disable on pull_request
if: |
github.event_name != 'pull_request' &&
(github.event_name != 'workflow_dispatch' || contains(inputs.platforms, 'windows_portable_x32'))
if: github.event_name != 'workflow_dispatch' || contains(inputs.platforms, 'windows_portable_x32')
runs-on: windows-2022
steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -283,10 +280,7 @@ jobs:
path: build.artifacts\

windows_portable_x64:
# Disable on pull_request
if: |
github.event_name != 'pull_request' &&
(github.event_name != 'workflow_dispatch' || contains(inputs.platforms, 'windows_portable_x64'))
if: github.event_name != 'workflow_dispatch' || contains(inputs.platforms, 'windows_portable_x64')
runs-on: windows-2022
steps:
- name: Cancel Previous Runs
Expand Down

0 comments on commit 116925b

Please sign in to comment.