fix(proxmox): parse port from URL when adding remote #100

Merged
sarman merged 6 commits from fix/proxmox-remote-add-error into beta 2026-06-14 05:23:50 +00:00
Showing only changes of commit 27bee10792 - Show all commits

View File

@ -48,8 +48,17 @@ jobs:
pkg-config pkg-config
- name: Install Rust components - name: Install Rust components
run: rustup component add rustfmt run: rustup component add rustfmt
- name: Install dependencies - name: Install dependencies with retry
run: npm install --legacy-peer-deps run: |
for i in 1 2 3; do
if npm install --legacy-peer-deps --prefer-offline --no-audit; then
exit 0
fi
echo "Attempt $i failed, retrying in 5 seconds..."
sleep 5
done
echo "All retry attempts failed"
exit 1
- name: Update version from Git - name: Update version from Git
run: node scripts/update-version.mjs run: node scripts/update-version.mjs
- run: cargo generate-lockfile --manifest-path src-tauri/Cargo.toml - run: cargo generate-lockfile --manifest-path src-tauri/Cargo.toml
@ -161,7 +170,17 @@ jobs:
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: | restore-keys: |
${{ runner.os }}-npm- ${{ runner.os }}-npm-
- run: npm ci --legacy-peer-deps - name: Install dependencies with retry
run: |
for i in 1 2 3; do
if npm ci --legacy-peer-deps --prefer-offline --no-audit; then
exit 0
fi
echo "Attempt $i failed, retrying in 5 seconds..."
sleep 5
done
echo "All retry attempts failed"
exit 1
- run: npx tsc --noEmit - run: npx tsc --noEmit
frontend-tests: frontend-tests:
@ -195,5 +214,15 @@ jobs:
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: | restore-keys: |
${{ runner.os }}-npm- ${{ runner.os }}-npm-
- run: npm ci --legacy-peer-deps - name: Install dependencies with retry
run: |
for i in 1 2 3; do
if npm ci --legacy-peer-deps --prefer-offline --no-audit; then
exit 0
fi
echo "Attempt $i failed, retrying in 5 seconds..."
sleep 5
done
echo "All retry attempts failed"
exit 1
- run: npm run test:run - run: npm run test:run