We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6c55be commit 36671c6Copy full SHA for 36671c6
.github/workflows/desktop-build.yml
@@ -76,13 +76,16 @@ jobs:
76
with:
77
path: release-artifacts
78
79
+ - name: List downloaded artifacts
80
+ run: find release-artifacts -type f -name "*" | head -20
81
+
82
- name: Attach assets to release
83
uses: softprops/action-gh-release@v1
84
85
tag_name: ${{ github.event.release.tag_name }}
86
files: |
- release-artifacts/typelets-win/*.exe
- release-artifacts/typelets-mac/*.dmg
- release-artifacts/typelets-linux/*.AppImage
87
+ release-artifacts/**/*.exe
88
+ release-artifacts/**/*.dmg
89
+ release-artifacts/**/*.AppImage
90
env:
91
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments