File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -163,14 +163,18 @@ jobs:
163163 if : runner.os == 'Windows'
164164 shell : bash
165165 run : |
166+ # move file first so we don't get directory structure in the zip
167+ mv "${{ steps.make_paths.outputs.binary_dir }}/${{ steps.make_paths.outputs.binary_filename }}" .
166168 7z a -mx9 "${{ steps.make_paths.outputs.archive_path}}" \
167- "${{ steps.make_paths.outputs.binary_dir }}/${{ steps.make_paths.outputs. binary_filename }}"
169+ "${{ steps.make_paths.outputs.binary_filename }}"
168170
169171 - name : Archive (macOS)
170172 if : runner.os == 'macOS'
171173 run : |
172- zip -r -9 "${{ steps.make_paths.outputs.archive_path}}" \
173- "${{ steps.make_paths.outputs.binary_dir }}/${{ steps.make_paths.outputs.binary_filename }}"
174+ # move file first so we don't get directory structure in the zip
175+ mv "${{ steps.make_paths.outputs.binary_dir }}/${{ steps.make_paths.outputs.binary_filename }}" .
176+ zip -9 "${{ steps.make_paths.outputs.archive_path}}" \
177+ "${{ steps.make_paths.outputs.binary_filename }}"
174178
175179 - name : Upload artifact
176180 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 11[package ]
22name = " nextver"
3- version = " 0.7.2 "
3+ version = " 0.7.3 "
44authors = [" Tim Martin <tim@tim.direct>" ]
55readme = " README.md"
66repository = " https://github.com/t-mart/nextver"
You can’t perform that action at this time.
0 commit comments