Skip to content

Commit db8359d

Browse files
committed
feat: Update Action and add more logging
1 parent 33afb62 commit db8359d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ runs:
3030
python3 -m cpdsa \
3131
--github-token "${{ inputs.token }}" \
3232
--github-repository "${{ inputs.repository }}" \
33+
--cocoapods-lock "${{ inputs.cocoapods-lock }}" \
3334
${{ inputs.argvs }}

cpdsa/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,10 @@
6464
logger.debug(f"Repository :: {GitHub.repository}")
6565

6666
if arguments.cocoapods_lock:
67+
logger.info(f"Lockfile provided :: {arguments.cocoapods_lock}")
6768
lock_files.append(arguments.cocoapods_lock)
6869
else:
70+
logger.info("Lockfile not provided, searching for lockfiles")
6971
lock_files = findCocoaPods(".")
7072

7173
for lockfile in lock_files:

0 commit comments

Comments
 (0)