Fix Windows CI logic (#35335)
Fixes unintentional change in https://github.com/zed-industries/zed/pull/35204 Release Notes: - N/A
This commit is contained in:
parent
4d66d967f2
commit
0aea5acc68
1 changed files with 2 additions and 1 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -771,7 +771,8 @@ jobs:
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
name: Create a Windows installer
|
name: Create a Windows installer
|
||||||
runs-on: [self-hosted, Windows, X64]
|
runs-on: [self-hosted, Windows, X64]
|
||||||
if: (startsWith(github.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
if: contains(github.event.pull_request.labels.*.name, 'run-bundling')
|
||||||
|
# if: (startsWith(github.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run-bundling'))
|
||||||
needs: [windows_tests]
|
needs: [windows_tests]
|
||||||
env:
|
env:
|
||||||
AZURE_TENANT_ID: ${{ secrets.AZURE_SIGNING_TENANT_ID }}
|
AZURE_TENANT_ID: ${{ secrets.AZURE_SIGNING_TENANT_ID }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue