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

Commit

Permalink
trim filename
Browse files Browse the repository at this point in the history
  • Loading branch information
ahernandez411 committed Dec 20, 2023
1 parent 600191b commit 504d045
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
...
- name: 'Zip and Upload Artifact'
uses: im-open/zip-upload-artifact@v1.1.9
uses: im-open/zip-upload-artifact@v1.1.10
with:
name: ${{ env.CODE_COVERAGE_REPORT_NAME }}
path: ${{ env.CODE_COVERAGE_DIR }}
Expand All @@ -47,7 +47,7 @@ jobs:
steps:
...
- name: Zip and Upload Files and Ignore one
uses: im-open/zip-upload-artifact@v1.1.9
uses: im-open/zip-upload-artifact@v1.1.10
with:
name: ${{ env.FILE_NAME }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ runs:
print("####################################################")
print("Inputs")
file_name = os.environ['FILE_NAME']
file_name = os.environ['FILE_NAME'].strip()
print(f"- Name: {file_name}")
file_path = os.environ['FILE_PATH'].splitlines()
Expand Down

0 comments on commit 504d045

Please sign in to comment.