Skip to content

Commit

Permalink
do not try to check debug log on successful build
Browse files Browse the repository at this point in the history
  • Loading branch information
laamaa committed Mar 2, 2025
1 parent 5d4d464 commit 209bfdd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-macos-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ jobs:
run: echo "NOW=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

- name: 'Build m8c'
id: buildApplication
continue-on-error: true
run: |
mkdir -p build_arm64 && cd build_arm64 && cmake .. && cpack -V
- name: 'view debug log'
- name: 'View debug log if compilation fails'
if: failure() && steps.buildApplication.outcome == 'failure'
run: cat /Users/runner/work/m8c/m8c/build_arm64/_CPack_Packages/Darwin/DragNDrop/PreinstallOutput.log

- name: 'Build package'
Expand Down

0 comments on commit 209bfdd

Please sign in to comment.