Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-kierepka-hl committed Sep 27, 2024
2 parents 4e1e63d + fb5a749 commit 48c19d2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ jobs:
run: dotnet publish --configuration Release -r ${{ matrix.rid }} --self-contained -o ./publish

- name: List contents of publish directory
shell: pwsh
run: |
if [ "${{ runner.os }}" == "Windows" ]; then
dir publish
else
if ($IsWindows) {
Get-ChildItem -Path publish -Recurse
} else {
ls -R publish
fi
}
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 48c19d2

Please sign in to comment.