We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33afb62 commit db8359dCopy full SHA for db8359d
action.yml
@@ -30,4 +30,5 @@ runs:
30
python3 -m cpdsa \
31
--github-token "${{ inputs.token }}" \
32
--github-repository "${{ inputs.repository }}" \
33
+ --cocoapods-lock "${{ inputs.cocoapods-lock }}" \
34
${{ inputs.argvs }}
cpdsa/__main__.py
@@ -64,8 +64,10 @@
64
logger.debug(f"Repository :: {GitHub.repository}")
65
66
if arguments.cocoapods_lock:
67
+ logger.info(f"Lockfile provided :: {arguments.cocoapods_lock}")
68
lock_files.append(arguments.cocoapods_lock)
69
else:
70
+ logger.info("Lockfile not provided, searching for lockfiles")
71
lock_files = findCocoaPods(".")
72
73
for lockfile in lock_files:
0 commit comments