We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a12ac commit 1b577bcCopy full SHA for 1b577bc
.github/workflows/dotnet-desktop.yml
@@ -17,7 +17,7 @@ jobs:
17
fetch-depth: 0
18
19
- name: Build
20
- run: dotnet publish MystIVAssetExplorer.Desktop -c Release -o artifacts/Bin /bl:artifacts/Logs/publish.binlog
+ run: .\build.ps1
21
22
- name: Upload bin artifact
23
if: always()
build.ps1
@@ -0,0 +1,6 @@
1
+$ErrorActionPreference = 'Stop'
2
+$PSNativeCommandUseErrorActionPreference = $true
3
+
4
+dotnet publish MystIVAssetExplorer.Desktop -c Release -o artifacts/Bin /bl:artifacts/Logs/publish.binlog
5
6
+Move-Item artifacts/Bin/MystIVAssetExplorer.Desktop.exe artifacts/Bin/MystIVAssetExplorer.exe -Force
0 commit comments