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

Commit

Permalink
more troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
ahernandez411 committed Nov 7, 2023
1 parent c93dc8a commit 6657aa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.9'

- name: Create Artifact Zip
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions src/zipper.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ def run(self) -> str:
str: The name of the zip file created
"""
zip_name = f"{self.name}.zip"
print("")
print(f"Creating '{zip_name}'...")

file_count = 0

with ZipFile(zip_name, "w", ZIP_DEFLATED) as zip_writer:

print(f"Creating '{zip_name}'...")
for path in self.included_paths:
print(f"Check path: {path}...")
if os.path.isfile(path):
Expand Down

0 comments on commit 6657aa6

Please sign in to comment.