Skip to repository content16 lines · 388 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T00:29:18.672Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
upload-extension-cli
1#!/usr/bin/env bash
2
3bash -euo pipefail
4source script/lib/blob-store.sh
5
6commit=$1
7if [ "$#" -ne 1 ] || ! [[ $commit =~ ^[0-9a-f]{40}$ ]]; then
8 echo "Usage: $0 <git-sha>"
9 exit 1
10fi
11
12bucket_name="zed-extension-cli"
13target_triple=$(rustc -vV | sed -n 's|host: ||p')
14
15upload_to_blob_store_public $bucket_name "target/release/zed-extension" "${commit}/${target_triple}/zed-extension"
16