From f48286f8e85952643b4c854ec21476ced34f2ff3 Mon Sep 17 00:00:00 2001 From: Ivan Maximov Date: Wed, 13 Mar 2024 09:09:45 +0300 Subject: [PATCH] --no-build --- .github/workflows/publish-preview.yml | 2 +- .github/workflows/publish-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-preview.yml b/.github/workflows/publish-preview.yml index 8ae6c04..3c9d7b0 100644 --- a/.github/workflows/publish-preview.yml +++ b/.github/workflows/publish-preview.yml @@ -39,7 +39,7 @@ jobs: run: dotnet build --no-restore -c Release - name: Pack solution [Release] working-directory: src - run: dotnet pack --no-restore --no-build -c Release -o out + run: dotnet pack --no-build -c Release -o out - name: Upload artifacts uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 203ce13..1dc5da9 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -32,7 +32,7 @@ jobs: run: dotnet build --no-restore -c Release - name: Pack solution [Release] working-directory: src - run: dotnet pack --no-restore --no-build -c Release -o out + run: dotnet pack --no-build -c Release -o out - name: Upload Nuget packages as workflow artifacts uses: actions/upload-artifact@v4 with: