Fixed move & rename op

This commit is contained in:
Thorsten Sommer 2024-06-05 20:57:11 +02:00
parent 8411a58d34
commit f8fe3513fb
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -58,6 +58,18 @@ jobs:
cd "app/MindWork AI Studio" cd "app/MindWork AI Studio"
dotnet publish --configuration release --runtime ${{ matrix.dotnet_runtime }} --disable-build-servers --force --output ../../publish/dotnet dotnet publish --configuration release --runtime ${{ matrix.dotnet_runtime }} --disable-build-servers --force --output ../../publish/dotnet
- name: Move & rename .NET artifact (Unix)
if: matrix.platform != 'windows-latest'
run: |
cd publish/dotnet
mv mindworkAIStudio "../../app/MindWork AI Studio/bin/dist/mindworkAIStudio${{ matrix.dotnet_name_postfix }}"
- name: Move & rename .NET artifact (Windows)
if: matrix.platform == 'windows-latest'
run: |
cd publish/dotnet
mv mindworkAIStudio.exe "../../app/MindWork AI Studio/bin/dist/mindworkAIStudio${{ matrix.dotnet_name_postfix }}"
- name: Move & rename .NET artifact - name: Move & rename .NET artifact
run: | run: |
cd publish/dotnet cd publish/dotnet