fix gh-actions

This commit is contained in:
2025-08-09 18:23:03 +09:00
parent aab0c39236
commit 46404ee1c7
2 changed files with 31 additions and 5 deletions

View File

@@ -62,9 +62,14 @@ jobs:
fi
- name: Sync package.json versions
continue-on-error: true
run: |
chmod +x scripts/sync-versions.sh
./scripts/sync-versions.sh
echo "🔄 Trying Node.js version sync first..."
node scripts/sync-versions.js || {
echo "🔄 Node.js version failed, trying shell script..."
chmod +x scripts/sync-versions.sh
./scripts/sync-versions.sh || echo "⚠️ Both version sync methods failed, but continuing with build..."
}
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable