Skip to content

Commit a9cda07

Browse files
lacerbiclaude
andauthored
fix(ci): handle spaces in artifact filenames (#74)
- Use find -print0 | xargs -r -0 to handle "Athanor Setup.exe" space - Add -r flag to prevent empty runs - Bump version to 0.7.18 🤖 Generated with [Claude Code](https://claude.com/claude-code) Signed-off-by: lacerbi <luigi.acerbi@gmail.com> Co-authored-by: Claude <noreply@anthropic.com>
1 parent 9678504 commit a9cda07

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,4 @@ jobs:
123123
env:
124124
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
125125
run: |
126-
gh release create ${{ needs.check-tag.outputs.tag }} \
127-
--generate-notes \
128-
$(find artifacts -type f)
126+
find artifacts -type f -print0 | xargs -r -0 gh release create ${{ needs.check-tag.outputs.tag }} --generate-notes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "athanor",
3-
"version": "0.7.17",
3+
"version": "0.7.18",
44
"bugs": {
55
"url": "https://github.com/lacerbi/athanor/issues"
66
},

0 commit comments

Comments
 (0)