Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-27T23:28:51.239Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

deploy-collab

22 lines · 406 B · text
1#!/usr/bin/env bash
2
3set -eu
4source script/lib/deploy-helpers.sh
5
6if [[ $# != 1 ]]; then
7  echo "Usage: $0 <production|staging>"
8  exit 1
9fi
10environment=$1
11tag="$(tag_for_environment $environment)"
12
13branch=$(git rev-parse --abbrev-ref HEAD)
14if [ "$branch" != "main" ]; then
15  echo "You must be on main to run this script"
16  exit 1
17fi
18
19git pull --ff-only origin main
20git tag -f $tag
21git push -f origin $tag
22
Served at tenant.openagents/omega Member data and write actions are omitted.