Skip to content

Commit dd9138a

Browse files
committed
chore(ci): update artifact file pattern for improved matching
1 parent 4694178 commit dd9138a

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/publish-bun.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,14 @@ jobs:
107107
with:
108108
path: artifacts
109109

110-
# 2) Create GitHub Release
110+
# 2) Flatten artifacts into single directory
111+
- name: 📦 Flatten artifacts
112+
shell: bash
113+
run: |
114+
mkdir -p release-files
115+
find artifacts -type f -exec cp {} release-files/ \;
116+
117+
# 3) Create GitHub Release
111118
- name: 🚀 Create Release
112119
uses: softprops/action-gh-release@v1
113120
with:
@@ -116,4 +123,5 @@ jobs:
116123
body: Tauri build via Bun
117124
draft: false
118125
prerelease: false
119-
files: artifacts/**/*
126+
files: release-files/*
127+

0 commit comments

Comments
 (0)