Skip to content

Commit 814ffa9

Browse files
committed
Fix linux paths
1 parent 22db169 commit 814ffa9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
run: dotnet restore
1818
- name: Build (Windows)
1919
run: dotnet publish "ImageMap4" --runtime win-x64 -p:PublishSingleFile=true /p:DebugType=None /p:DebugSymbols=false --configuration Release --self-contained false
20-
- name: Zip (Windows)
21-
run: powershell Compress-Archive -Path "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/ImageMap.exe", "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/ImageMap-cmd.exe", "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/leveldb_mcpe_win_amd64.dll", "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/leveldb_mcpe_win32.dll" -DestinationPath "ImageMap4-Windows.zip"
2220
- name: Build (Linux)
2321
run: dotnet publish "ImageMap4.CMD" --runtime linux-x64 -p:PublishSingleFile=true /p:DebugType=None /p:DebugSymbols=false --configuration Release --self-contained false
22+
- name: Zip (Windows)
23+
run: powershell Compress-Archive -Path "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/ImageMap.exe", "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/ImageMap-cmd.exe", "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/leveldb_mcpe_win_amd64.dll", "ImageMap4/bin/Release/net6.0-windows/win-x64/publish/leveldb_mcpe_win32.dll" -DestinationPath "ImageMap4-Windows.zip"
2424
- name: Zip (Linux)
25-
run: powershell Compress-Archive -Path "ImageMap4/bin/Release/net6.0/linux-x64/publish/ImageMap-cmd", "ImageMap4/bin/Release/net6.0/linux-x64/publish/leveldb_mcpe_linux_x86_64.so" -DestinationPath "ImageMap4-Linux.zip"
25+
run: powershell Compress-Archive -Path "ImageMap4.CMD/bin/Release/net6.0/linux-x64/publish/ImageMap-cmd", "ImageMap4.CMD/bin/Release/net6.0/linux-x64/publish/leveldb_mcpe_linux_x86_64.so" -DestinationPath "ImageMap4-Linux.zip"
2626
- name: Create Release
2727
uses: softprops/action-gh-release@v1
2828
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)