mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-08-17 18:25:42 +02:00
[Haik]: ok now the release is in the same repo as the code. Now onto browser revamps
This commit is contained in:
Generated
+2
-2
@@ -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"
|
||||
|
||||
@@ -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
@@ -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 -
|
||||
Reference in New Issue
Block a user