From 74b8f6ee5e20cf309d9db1c4ef594611a3420405 Mon Sep 17 00:00:00 2001 From: Peter Giacomo Lombardo Date: Fri, 24 Mar 2023 15:30:57 +0100 Subject: [PATCH] Github Action: enable cake pack (#59) --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 494dcc84..bcf807cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,14 +63,14 @@ jobs: - name: "Dotnet Cake Test" run: dotnet cake --target=Test shell: pwsh - # - name: "Dotnet Cake Pack" - # run: dotnet cake --target=Pack - # shell: pwsh - # - name: "Publish Artifacts" - # uses: actions/upload-artifact@v3.1.2 - # with: - # name: ${{matrix.os}} - # path: "./Artifacts" + - name: "Dotnet Cake Pack" + run: dotnet cake --target=Pack + shell: pwsh + - name: "Publish Artifacts" + uses: actions/upload-artifact@v3.1.2 + with: + name: ${{matrix.os}} + path: "./Artifacts" push-nuget: name: "Push NuGet Packages"