66
66
with :
67
67
name : macos-${{ matrix.arch }}
68
68
path : |
69
- apps/desktop/out/make/*.dmg
69
+ apps/desktop/out/make/*-${{ matrix.arch }} .dmg
70
70
apps/desktop/out/make/zip/darwin/${{ matrix.arch }}/*.zip
71
71
72
72
release :
91
91
path : artifacts
92
92
93
93
- name : List artifacts
94
- run : ls -la artifacts/*
94
+ run : |
95
+ echo "=== Full artifacts directory structure ==="
96
+ find artifacts -type f -name "*.dmg" -o -name "*.zip" | sort
97
+ echo ""
98
+ echo "=== Detailed file listing ==="
99
+ find artifacts -type f \( -name "*.dmg" -o -name "*.zip" \) -exec ls -la {} \;
95
100
96
101
- name : Create Release
97
102
uses : softprops/action-gh-release@v2
@@ -109,12 +114,8 @@ jobs:
109
114
### Downloads
110
115
111
116
#### macOS
112
- - **Apple Silicon (M1/M2/M3)**:
113
- - DMG: `Amical-${{ steps.package_version.outputs.version }}-arm64.dmg`
114
- - ZIP: `Amical-darwin-arm64-${{ steps.package_version.outputs.version }}.zip`
115
- - **Intel**:
116
- - DMG: `Amical-${{ steps.package_version.outputs.version }}-x64.dmg`
117
- - ZIP: `Amical-darwin-x64-${{ steps.package_version.outputs.version }}.zip`
117
+ - **Apple Silicon (M1/M2/M3)**: Download the DMG or ZIP file for arm64
118
+ - **Intel**: Download the DMG or ZIP file for x64
118
119
119
120
### Installation
120
121
@@ -125,8 +126,8 @@ jobs:
125
126
The ZIP files are primarily for automatic updates. We recommend using the DMG files for initial installation.
126
127
files : |
127
128
artifacts/macos-arm64/*.dmg
128
- artifacts/macos-arm64/*.zip
129
+ artifacts/macos-arm64/zip/darwin/arm64/ *.zip
129
130
artifacts/macos-x64/*.dmg
130
- artifacts/macos-x64/*.zip
131
+ artifacts/macos-x64/zip/darwin/x64/ *.zip
131
132
env :
132
133
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments