Skip to content

Commit e529b36

Browse files
committed
WIP
1 parent 5705dd6 commit e529b36

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ jobs:
108108
needs: preflight
109109
if: needs.preflight.outputs.skip-publishing == 'false' || ${{ inputs.dry-run }}
110110
strategy:
111+
fail-fast: false
111112
matrix:
112113
arch: [ x86_64 ]
113114
os: [ windows, linux ]
@@ -146,8 +147,9 @@ jobs:
146147
147148
$PkgDir = Join-Path docker $Env:RUNNER_OS # RUNNER_OS is camelcase
148149
Write-Host "PkgDir = $PkgDir"
149-
New-Item -ItemType Directory -Path $PkgDir
150150
echo "package-path=$PkgDir" >> $Env:GITHUB_OUTPUT
151+
New-Item -ItemType Directory -Path $PkgDir -Force
152+
Get-ChildItem -Path "$PkgDir"
151153
152154
$SourceFileName = "DevolutionsGateway_$($Env:RUNNER_OS)_${{ needs.preflight.outputs.version }}_${{ matrix.arch }}"
153155

0 commit comments

Comments
 (0)