Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
should be print (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahernandez411 authored Sep 13, 2023
1 parent e296344 commit c82ec9c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,15 @@ runs:
print(f'- Is Path a File: {is_path_file}')
if is_path_file:
echo "Setting LOOKUP_PATH for a single file!"
echo ""
print("Setting LOOKUP_PATH for a single file!")
print("")
set_env('LOOKUP_PATH', input_path)
set_env('DESTINATION_PATH', f'{input_path}.zip')
else:
echo "Setting LOOKUP_PATH for a directory!"
echo ""
print("Setting LOOKUP_PATH for a directory!")
print("")
set_env('LOOKUP_PATH', f'{input_path}/*')
set_env('DESTINATION_PATH', f'{input_path}/{input_name}.zip')
Expand Down

0 comments on commit c82ec9c

Please sign in to comment.