File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -182,8 +182,9 @@ jobs:
182182 DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
183183
184184 # Read signature files
185- X64_SIG=$(cat signatures/*x64*.exe.sig 2>/dev/null || echo "")
186- ARM64_SIG=$(cat signatures/*arm64*.exe.sig 2>/dev/null || echo "")
185+ # Use specific version to avoid matching multiple files if present
186+ X64_SIG=$(cat signatures/*_${VERSION}_x64*.exe.sig | head -n 1)
187+ ARM64_SIG=$(cat signatures/*_${VERSION}_arm64*.exe.sig | head -n 1)
187188
188189 cat > latest.json << EOF
189190 {
Original file line number Diff line number Diff line change 11{
22 "name" : " zero-limit" ,
3- "version" : " 1.0.5 " ,
3+ "version" : " 1.0.7 " ,
44 "private" : true ,
55 "type" : " module" ,
66 "scripts" : {
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://schema.tauri.app/config/2" ,
33 "productName" : " ZeroLimit" ,
4- "version" : " 1.0.6 " ,
4+ "version" : " 1.0.7 " ,
55 "identifier" : " com.0xtbug.zero-limit" ,
66 "build" : {
77 "beforeDevCommand" : " pnpm dev" ,
You can’t perform that action at this time.
0 commit comments