[Haik]: ok now the release is in the same repo as the code. Now onto browser revamps

This commit is contained in:
haikdc
2026-03-15 23:39:45 -07:00
parent 383f62c852
commit 61755e60eb
3 changed files with 21 additions and 4 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "openswarm",
"version": "1.0.11",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "openswarm",
"version": "1.0.11",
"version": "1.0.0",
"dependencies": {
"electron-updater": "^6.3.0",
"get-port": "^5.1.1"
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "openswarm",
"version": "1.0.11",
"version": "1.0.0",
"description": "OpenSwarm — AI Agent Orchestrator",
"main": "main.js",
"scripts": {
@@ -95,7 +95,7 @@
"publish": {
"provider": "github",
"owner": "openswarm-ai",
"repo": "production"
"repo": "openswarm"
},
"afterSign": "scripts/notarize.js"
}
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# The comment above is shebang, DO NOT REMOVE
PUBLISH_ABSPATH="$(readlink -f "${BASH_SOURCE[0]}")"
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' 's/\r//g' "$PUBLISH_ABSPATH"
else
sed -i 's/\r//g' "$PUBLISH_ABSPATH"
fi
chmod +x "$PUBLISH_ABSPATH"
PROJECT_ROOT="$(dirname "$PUBLISH_ABSPATH")"
cd "$PROJECT_ROOT"
echo "Building and deploying to Firebase Hosting..."
bash scripts/build-app.sh --publish
cd -