rds_ssm_connect 1.7.3 → 1.7.4
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.
|
@@ -28,6 +28,10 @@ jobs:
|
|
|
28
28
|
rust_target: x86_64-unknown-linux-gnu
|
|
29
29
|
sidecar_target: node22-linux-x64
|
|
30
30
|
sidecar_triple: x86_64-unknown-linux-gnu
|
|
31
|
+
- platform: ubuntu-24.04-arm64
|
|
32
|
+
rust_target: aarch64-unknown-linux-gnu
|
|
33
|
+
sidecar_target: node22-linux-arm64
|
|
34
|
+
sidecar_triple: aarch64-unknown-linux-gnu
|
|
31
35
|
- platform: windows-latest
|
|
32
36
|
rust_target: x86_64-pc-windows-msvc
|
|
33
37
|
sidecar_target: node22-win-x64
|
|
@@ -54,7 +58,7 @@ jobs:
|
|
|
54
58
|
workspaces: src-tauri
|
|
55
59
|
|
|
56
60
|
- name: Install dependencies (Ubuntu)
|
|
57
|
-
if: matrix.platform
|
|
61
|
+
if: startsWith(matrix.platform, 'ubuntu')
|
|
58
62
|
run: |
|
|
59
63
|
sudo apt-get update
|
|
60
64
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
package/package.json
CHANGED
|
@@ -49,6 +49,10 @@ const updateManifest = {
|
|
|
49
49
|
url: `${releaseUrl}/${productName}_${version}_amd64.AppImage.tar.gz`,
|
|
50
50
|
signature: '',
|
|
51
51
|
},
|
|
52
|
+
'linux-aarch64': {
|
|
53
|
+
url: `${releaseUrl}/${productName}_${version}_aarch64.AppImage.tar.gz`,
|
|
54
|
+
signature: '',
|
|
55
|
+
},
|
|
52
56
|
'windows-x86_64': {
|
|
53
57
|
url: `${releaseUrl}/${productName}_${version}_x64-setup.nsis.zip`,
|
|
54
58
|
signature: '',
|
package/scripts/pkg-sidecar.js
CHANGED
|
@@ -15,6 +15,7 @@ const TARGETS = [
|
|
|
15
15
|
{ triple: 'aarch64-apple-darwin', pkg: 'node22-macos-arm64' },
|
|
16
16
|
{ triple: 'x86_64-apple-darwin', pkg: 'node22-macos-x64' },
|
|
17
17
|
{ triple: 'x86_64-unknown-linux-gnu', pkg: 'node22-linux-x64' },
|
|
18
|
+
{ triple: 'aarch64-unknown-linux-gnu', pkg: 'node22-linux-arm64' },
|
|
18
19
|
{ triple: 'x86_64-pc-windows-msvc', pkg: 'node22-win-x64' },
|
|
19
20
|
]
|
|
20
21
|
|
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED