Skip to content

Commit 682dfef

Browse files
authored
Merge pull request #3 from 0xtbug/dev
fix(ci): robust signature handling and bump version to 1.0.7
2 parents 7d856d9 + 30269a8 commit 682dfef

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zero-limit",
3-
"version": "1.0.5",
3+
"version": "1.0.7",
44
"private": true,
55
"type": "module",
66
"scripts": {

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",

0 commit comments

Comments
 (0)