rds_ssm_connect 1.7.11 → 1.7.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +5 -7
- package/connect.js +1 -1
- package/package.json +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/tauri.conf.json +1 -1
|
@@ -100,13 +100,11 @@ jobs:
|
|
|
100
100
|
# Find the updater artifact — must match what generate-update-json.js URLs point to:
|
|
101
101
|
# macOS: .app.tar.gz, Linux: .AppImage, Windows: -setup.exe
|
|
102
102
|
UPDATER_FILE=""
|
|
103
|
-
for
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
fi
|
|
109
|
-
done
|
|
103
|
+
for f in "$BUNDLE"/macos/*.app.tar.gz "$BUNDLE"/appimage/*.AppImage "$BUNDLE"/nsis/*-setup.exe; do
|
|
104
|
+
if [ -f "$f" ]; then
|
|
105
|
+
UPDATER_FILE="$f"
|
|
106
|
+
break
|
|
107
|
+
fi
|
|
110
108
|
done
|
|
111
109
|
|
|
112
110
|
if [ -z "$UPDATER_FILE" ]; then
|
package/connect.js
CHANGED
|
@@ -10,7 +10,7 @@ import { promisify } from 'node:util'
|
|
|
10
10
|
import { PROJECT_CONFIGS } from './envPortMapping.js'
|
|
11
11
|
|
|
12
12
|
// Package info for version checking
|
|
13
|
-
const packageJson = { name: 'rds_ssm_connect', version: '1.7.
|
|
13
|
+
const packageJson = { name: 'rds_ssm_connect', version: '1.7.12' }
|
|
14
14
|
|
|
15
15
|
const execAsync = promisify(exec)
|
|
16
16
|
|
package/package.json
CHANGED
package/src-tauri/Cargo.toml
CHANGED