Skip to content

Commit 36671c6

Browse files
committed
fix: desktop build workflow artifact paths for release attachment
1 parent f6c55be commit 36671c6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/desktop-build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,16 @@ jobs:
7676
with:
7777
path: release-artifacts
7878

79+
- name: List downloaded artifacts
80+
run: find release-artifacts -type f -name "*" | head -20
81+
7982
- name: Attach assets to release
8083
uses: softprops/action-gh-release@v1
8184
with:
8285
tag_name: ${{ github.event.release.tag_name }}
8386
files: |
84-
release-artifacts/typelets-win/*.exe
85-
release-artifacts/typelets-mac/*.dmg
86-
release-artifacts/typelets-linux/*.AppImage
87+
release-artifacts/**/*.exe
88+
release-artifacts/**/*.dmg
89+
release-artifacts/**/*.AppImage
8790
env:
8891
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)