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

trim filename #15

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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