Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CHKZL committed Jul 23, 2024
1 parent 363b1f8 commit 730bd70
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/DDTV_Dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Linux or macOS)
if: runner.os != 'Windows'
Expand Down Expand Up @@ -286,7 +286,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Windows)
if: runner.os == 'Windows'
Expand Down Expand Up @@ -416,7 +416,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Windows)
if: runner.os == 'Windows'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/DDTV_Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Linux or macOS)
if: runner.os != 'Windows'
Expand Down Expand Up @@ -298,7 +298,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Windows)
if: runner.os == 'Windows'
Expand Down Expand Up @@ -427,7 +427,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Windows)
if: runner.os == 'Windows'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/DDTV_Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Linux or macOS)
if: runner.os != 'Windows'
Expand Down Expand Up @@ -417,7 +417,7 @@ 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 --publishTrimmed --output build_update_output
run: cd Update && dotnet publish --runtime ${{ matrix.runtime }} --configuration Release --self-contained true /p:PublishTrimmed=true --output build_update_output

- name: Move Update (Windows)
if: runner.os == 'Windows'
Expand Down

0 comments on commit 730bd70

Please sign in to comment.