From 77f0606e1aff53984435208435f1202312cb7870 Mon Sep 17 00:00:00 2001 From: JosepFe Date: Tue, 10 Dec 2024 15:22:59 +0100 Subject: [PATCH] Update github actions --- .github/workflows/nuget-package.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/nuget-package.yml b/.github/workflows/nuget-package.yml index 11f1ca3c..95115466 100644 --- a/.github/workflows/nuget-package.yml +++ b/.github/workflows/nuget-package.yml @@ -4,13 +4,13 @@ on: workflow_dispatch: inputs: project: - description: 'Select the project to build' + description: 'Select the project to build and pack' required: true - default: 'Path/To/Project1.csproj' + default: 'Devon4Net.Infrastructure.Common' options: - - 'Path/To/Project1.csproj' - - 'Path/To/Project2.csproj' - - 'Path/To/Project3.csproj' + - 'Devon4Net.Infrastructure.Common' + - 'Devon4Net.Infrastructure.Cors' + - 'Devon4Net.Infrastructure.JWT' version_type: description: 'Select the version type' required: true @@ -36,7 +36,7 @@ jobs: - name: Get latest version from GitHub Packages run: | - LATEST_VERSION=$(dotnet nuget list source --source "https://nuget.pkg.github.com//index.json" | grep "" | head -n 1 | awk '{print $2}') + LATEST_VERSION=$(dotnet nuget list source --source "https://nuget.pkg.github.com//index.json" | grep "${{ github.event.inputs.project }}" | head -n 1 | awk '{print $2}') echo "Latest version: $LATEST_VERSION" echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_ENV @@ -67,10 +67,10 @@ jobs: echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV - name: Restore dependencies - run: dotnet restore ${{ github.event.inputs.project }} + run: dotnet restore source/Modules/${{ github.event.inputs.project }}/${{ github.event.inputs.project }}.csproj - - name: Build project - run: dotnet build ${{ github.event.inputs.project }} --configuration Release --no-restore + # - name: Build project + # run: dotnet build ${{ github.event.inputs.project }} --configuration Release --no-restore - - name: Pack NuGet package - run: dotnet pack ${{ github.event.inputs.project }} --configuration Release --no-build --output ./nuget-packages /p:PackageVersion=${{ env.NEW_VERSION }} \ No newline at end of file + # - name: Pack NuGet package + # run: dotnet pack ${{ github.event.inputs.project }} --configuration Release --no-build --output ./nuget-packages /p:PackageVersion=${{ env.NEW_VERSION }} \ No newline at end of file