Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 14:39:21 +0300
committerGitHub <noreply@github.com>2022-10-27 14:39:21 +0300
commit0b4ccdf8f0d1155871dd012963cea4d6a21dc4bb (patch)
treea883c51a66d13fba471ba3c5171e46cee0248b1a
parentb8d57993d3ce34cdec37edc522365979655a8627 (diff)
No trimming
-rw-r--r--.github/workflows/build-test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 6437d69..6172e0d 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -40,7 +40,7 @@ jobs:
dotnet-version: 6.0.x
- name: Build
env:
- SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true -p:PublishTrimmed=True' || '--no-self-contained' }}
+ SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true' || '--no-self-contained' }}
run: dotnet publish ${{ env.PROJECT_PATH }} -c ${{ env.CONFIGURATION }} -r ${{ matrix.os }}-${{ matrix.arch }} -p:PublishSingleFile=true ${{ env.SC_OPS }} -o ${{ env.OUTPUT_DIR }}/${{ env.OUTPUT_SUBDIR }}/${{ env.APP_NAME }} -p:IncludeAllContentForSelfExtract=true
- name: Upload artifact
uses: actions/upload-artifact@v3