diff --git a/.github/workflows/DDTV_Dev.yml b/.github/workflows/DDTV_Dev.yml index 35fb92b9a..5f0814093 100644 --- a/.github/workflows/DDTV_Dev.yml +++ b/.github/workflows/DDTV_Dev.yml @@ -125,12 +125,12 @@ jobs: run: cd Server && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_update_output - name: Move Update (Linux or macOS) if: runner.os != 'Windows' run: | - source="Update/build_output/*" + source="Update/build_update_output/*" destination="Server/build_output/Update" mkdir -p $destination @@ -140,7 +140,7 @@ jobs: if: runner.os == 'Windows' shell: pwsh run: | - $source = "Update/build_output/*" + $source = "Update/build_update_output/*" $destination = "Server/build_output/Update" New-Item -ItemType Directory -Force -Path $destination @@ -285,13 +285,13 @@ jobs: run: cd Desktop && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' shell: pwsh run: | - $source = "Update/build_output/*" + $source = "Update/build_update_output/*" $destination = "Desktop/build_output/Update" New-Item -ItemType Directory -Force -Path $destination @@ -402,13 +402,13 @@ jobs: run: cd Client && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' shell: pwsh run: | - $source = "Update/build_output/*" + $source = "Update/build_update_output/*" $destination = "Client/build_output/Update" New-Item -ItemType Directory -Force -Path $destination diff --git a/.github/workflows/DDTV_Release.yml b/.github/workflows/DDTV_Release.yml index 1c321ba58..bd2f159b0 100644 --- a/.github/workflows/DDTV_Release.yml +++ b/.github/workflows/DDTV_Release.yml @@ -125,12 +125,12 @@ jobs: run: cd Server && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_update_output - name: Move Update (Linux or macOS) if: runner.os != 'Windows' run: | - source="Update/build_output/*" + source="Update/build_update_output/*" destination="Server/build_output/Update" mkdir -p $destination @@ -140,7 +140,7 @@ jobs: if: runner.os == 'Windows' shell: pwsh run: | - $source = "Update/build_output/*" + $source = "Update/build_update_output/*" $destination = "Server/build_output/Update" New-Item -ItemType Directory -Force -Path $destination @@ -285,13 +285,13 @@ jobs: run: cd Desktop && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' shell: pwsh run: | - $source = "Update/build_output/*" + $source = "Update/build_update_output/*" $destination = "Desktop/build_output/Update" New-Item -ItemType Directory -Force -Path $destination @@ -402,13 +402,13 @@ jobs: run: cd Client && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output - name: Build Update - run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_output + run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true --output build_update_output - name: Move Update (Windows) if: runner.os == 'Windows' shell: pwsh run: | - $source = "Update/build_output/*" + $source = "Update/build_update_output/*" $destination = "Client/build_output/Update" New-Item -ItemType Directory -Force -Path $destination