Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonhunt02 authored Dec 22, 2024
1 parent a78c311 commit 9eaf5c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/zip-upload-split/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ runs:
MAX_SIZE: 2050000
run: |
mkdir _temp
zip ${{ inputs.zip-path }} --out _temp/new.zip -s "${MAX_SIZE}k"
NAME=$( basename ${{ inputs.zip-path }} )
zip ${{ inputs.zip-path }} --out _temp/${NAME} -s "${MAX_SIZE}k"
tree
cd _temp
for file in *; do \
Expand Down

0 comments on commit 9eaf5c4

Please sign in to comment.