mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-21 12:55:09 +00:00
* feat: build prod server resource artifacts with cloudflare r2 * fix: address PR review comments for prod_server_resources_cloudflare * feat: fix prod server build setup and CLI ergonomics * fix: prevent build env secret inlining and template fallback * fix: read from fileenv * feat: add ripgrep * feat: upload prod artifacts to latest and version prefixes
113 lines
2.7 KiB
JSON
113 lines
2.7 KiB
JSON
{
|
|
"resources": [
|
|
{
|
|
"name": "Bun Runtime - macOS ARM64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/bun/bun-darwin-arm64"
|
|
},
|
|
"destination": "resources/bin/third_party/bun",
|
|
"os": ["macos"],
|
|
"arch": ["arm64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "Bun Runtime - macOS x64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/bun/bun-darwin-x64"
|
|
},
|
|
"destination": "resources/bin/third_party/bun",
|
|
"os": ["macos"],
|
|
"arch": ["x64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "Bun Runtime - Linux ARM64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/bun/bun-linux-arm64"
|
|
},
|
|
"destination": "resources/bin/third_party/bun",
|
|
"os": ["linux"],
|
|
"arch": ["arm64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "Bun Runtime - Linux x64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/bun/bun-linux-x64"
|
|
},
|
|
"destination": "resources/bin/third_party/bun",
|
|
"os": ["linux"],
|
|
"arch": ["x64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "Bun Runtime - Windows x64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/bun/bun-windows-x64.exe"
|
|
},
|
|
"destination": "resources/bin/third_party/bun.exe",
|
|
"os": ["windows"],
|
|
"arch": ["x64"]
|
|
},
|
|
{
|
|
"name": "ripgrep - macOS ARM64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/ripgrep/rg-darwin-arm64"
|
|
},
|
|
"destination": "resources/bin/third_party/rg",
|
|
"os": ["macos"],
|
|
"arch": ["arm64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "ripgrep - macOS x64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/ripgrep/rg-darwin-x64"
|
|
},
|
|
"destination": "resources/bin/third_party/rg",
|
|
"os": ["macos"],
|
|
"arch": ["x64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "ripgrep - Linux ARM64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/ripgrep/rg-linux-arm64"
|
|
},
|
|
"destination": "resources/bin/third_party/rg",
|
|
"os": ["linux"],
|
|
"arch": ["arm64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "ripgrep - Linux x64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/ripgrep/rg-linux-x64"
|
|
},
|
|
"destination": "resources/bin/third_party/rg",
|
|
"os": ["linux"],
|
|
"arch": ["x64"],
|
|
"executable": true
|
|
},
|
|
{
|
|
"name": "ripgrep - Windows x64",
|
|
"source": {
|
|
"type": "r2",
|
|
"key": "third_party/ripgrep/rg-windows-x64.exe"
|
|
},
|
|
"destination": "resources/bin/third_party/rg.exe",
|
|
"os": ["windows"],
|
|
"arch": ["x64"]
|
|
}
|
|
]
|
|
}
|