From e26d3c012ff9ea4f469b6c7cb53fbbd293f59ca5 Mon Sep 17 00:00:00 2001 From: Laszlo Paillat Date: Sun, 26 Feb 2023 15:59:15 +0100 Subject: [PATCH] fixed ci --- .github/workflows/ContinuousIntegration.yml | 2 +- .github/workflows/Release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ContinuousIntegration.yml b/.github/workflows/ContinuousIntegration.yml index 16a40f9a..ebe29d4c 100644 --- a/.github/workflows/ContinuousIntegration.yml +++ b/.github/workflows/ContinuousIntegration.yml @@ -40,7 +40,7 @@ jobs: - name: Create package run: | - dotnet pack source\DefaultDocumentation.sln -c Release -o build /p:CI_VERSION=true + dotnet pack source\DefaultDocumentation.sln -c Release /p:PublishDir=build /p:CI_VERSION=true - name: Publish packages run: nuget push build\*.nupkg diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 8db48bf8..d37e6162 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -28,7 +28,7 @@ jobs: - name: Create packages run: | - dotnet pack source\DefaultDocumentation.sln -c Release -o build /p:Version=${{ github.event.release.tag_name }} + dotnet pack source\DefaultDocumentation.sln -c Release /p:PublishDir=build /p:Version=${{ github.event.release.tag_name }} - name: Create RELEASE.txt run: |