From 91a5760cad8bfdf7ec4b16e20feb7e21f61958fd Mon Sep 17 00:00:00 2001 From: Mohammed Owes Date: Thu, 27 Jul 2023 18:25:04 +0530 Subject: [PATCH] displaying publish path --- .github/workflows/mac-build.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index b300443..cde3d60 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -82,9 +82,15 @@ jobs: - name : Build MacCatalyst App shell: bash run: | - dotnet build -f net7.0-maccatalyst -c Release -o ./artifacts - dotnet publish -f net7.0-maccatalyst -c Release -p:CreatePackage=false -o ./artifacts + dotnet build -f net7.0-maccatalyst -c Release -o ./bin/publish/artifacts + dotnet publish -f net7.0-maccatalyst -c Release -p:CreatePackage=true -o ./bin/publish/artifacts + - name : Display publish payh + shell: bash + run: | + cd ./bin/publish/artifacts + ls + # - name: Build and Run UnitTests # shell: bash # run: | @@ -95,4 +101,4 @@ jobs: with: name: artifacts-mac path: | - ./artifacts/**/*.pkg \ No newline at end of file + ./bin/publish/artifacts/**/*.pkg \ No newline at end of file