Skip to content

Commit 983747a

Browse files
author
Egor Gruzdev
committed
add ts/nts in release
1 parent 6583ad6 commit 983747a

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,11 @@ jobs:
7676
- '8.3'
7777
- '8.4'
7878
- '8.5'
79+
ts:
80+
- nts
81+
- ts
7982
runs-on: windows-2022
80-
name: "Windows — PHP ${{ matrix.php-version }}"
83+
name: "Windows — PHP ${{ matrix.php-version }} — ${{ matrix.ts == 'ts' && 'TS' || 'NTS' }}"
8184
steps:
8285
- uses: actions/checkout@v6
8386

@@ -86,7 +89,7 @@ jobs:
8689
with:
8790
php-version: ${{ matrix.php-version }}
8891
arch: x64
89-
ts: nts
92+
ts: ${{ matrix.ts }}
9093
args: --enable-debugger
9194
run-tests: false
9295

@@ -95,7 +98,8 @@ jobs:
9598
shell: pwsh
9699
run: |
97100
$phpVer = "${{ matrix.php-version }}"
98-
$assetName = "php-debugger-php${phpVer}-windows-x64.dll"
101+
$tsTag = "${{ matrix.ts }}"
102+
$assetName = "php-debugger-php${phpVer}-${tsTag}-windows-x64.dll"
99103
$dll = Get-ChildItem -Path $env:RUNNER_TEMP -Recurse -Filter 'php_debugger.dll' -ErrorAction SilentlyContinue | Select-Object -First 1
100104
if (-not $dll) {
101105
$dll = Get-ChildItem -Recurse -Filter 'php_debugger.dll' -ErrorAction SilentlyContinue | Select-Object -First 1

0 commit comments

Comments
 (0)