Skip to content

Commit

Permalink
Support "verbose" param in verification step
Browse files Browse the repository at this point in the history
  • Loading branch information
karolszafranski committed Nov 23, 2022
1 parent c00e701 commit b4fc398
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,11 @@ runs:
- name: Verify Certificate and Provisioning Profile
shell: bash
run: |
security find-identity -v -p codesigning
cat ~/Library/MobileDevice/Provisioning\ Profiles/*
if [[ "${{ inputs.verbose }}" == "true" ]]; then
security find-identity -p codesigning
ls -l ~/Library/MobileDevice/Provisioning\ Profiles/*
cat ~/Library/MobileDevice/Provisioning\ Profiles/*
else
security find-identity -v -p codesigning
ls -l ~/Library/MobileDevice/Provisioning\ Profiles/*
fi

0 comments on commit b4fc398

Please sign in to comment.