Skip to content

Commit

Permalink
displaying publish path
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammed Owes committed Jul 27, 2023
1 parent f0a3fbe commit 91a5760
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/mac-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -95,4 +101,4 @@ jobs:
with:
name: artifacts-mac
path: |
./artifacts/**/*.pkg
./bin/publish/artifacts/**/*.pkg

0 comments on commit 91a5760

Please sign in to comment.