We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5705dd6 commit e529b36Copy full SHA for e529b36
1 file changed
.github/workflows/release.yml
@@ -108,6 +108,7 @@ jobs:
108
needs: preflight
109
if: needs.preflight.outputs.skip-publishing == 'false' || ${{ inputs.dry-run }}
110
strategy:
111
+ fail-fast: false
112
matrix:
113
arch: [ x86_64 ]
114
os: [ windows, linux ]
@@ -146,8 +147,9 @@ jobs:
146
147
148
$PkgDir = Join-Path docker $Env:RUNNER_OS # RUNNER_OS is camelcase
149
Write-Host "PkgDir = $PkgDir"
- New-Item -ItemType Directory -Path $PkgDir
150
echo "package-path=$PkgDir" >> $Env:GITHUB_OUTPUT
151
+ New-Item -ItemType Directory -Path $PkgDir -Force
152
+ Get-ChildItem -Path "$PkgDir"
153
154
$SourceFileName = "DevolutionsGateway_$($Env:RUNNER_OS)_${{ needs.preflight.outputs.version }}_${{ matrix.arch }}"
155
0 commit comments