Home

madison / open-git

public
Overview Code History Branches Pull requestsIssuesInsights Campfire Docs
main
HomeOverview Code PRsIssues

updates to releases

last month

fb44874
Authored
moss8/17/2026, 6:45:02 AM

Parentfb7176d

74 files changed
  • .opengit/workflows/ship.yml+26−0
  • apps/cli/src/index.ts+5−0
  • apps/git-gateway/src/db.ts+22−0
  • apps/git-gateway/src/server.ts+53−18
  • apps/git-worker/src/index.ts+12−0
  • apps/managed-runner/src/index.ts+7−2
  • apps/runner/src/index.ts+38−5
  • apps/web/app/[username]/[repository]/releases/actions.ts+320−0
  • apps/web/app/[username]/[repository]/releases/download/[tag]/[...asset]/route.ts+79−0
  • apps/web/app/[username]/[repository]/releases/new/create-release-form.tsx+134−0
  • apps/web/app/[username]/[repository]/releases/new/page.tsx+64−0
  • apps/web/app/[username]/[repository]/releases/page.tsx+166−0
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/delete-release-asset-button.tsx+35−0
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/edit-release-form.tsx+70−0
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/page.tsx+254−0
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/release-build-refresh.tsx+18−0
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/release-writer-actions.tsx+102−0
  • apps/web/app/[username]/[repository]/releases/tag/[tag]/upload-release-assets-form.tsx+43−0
  • apps/web/app/[username]/[repository]/repository-home.tsx+26−2
  • apps/web/app/[username]/[repository]/repository-releases-panel.tsx+142−0
  • apps/web/app/api/ci/jobs/[jobId]/artifacts/route.ts+32−0
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/[id]/assets/[assetId]/route.ts+63−0
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/[id]/assets/route.ts+87−0
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/[id]/route.ts+180−0
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/latest/route.ts+43−0
  • apps/web/app/api/v1/repos/[owner]/[repository]/releases/route.ts+141−0
  • apps/web/app/workspace/repository-explorer.tsx+1−0
  • apps/web/db/ci.ts+102−8
  • apps/web/db/releases.ts+314−0
  • apps/web/db/schema.ts+97−0
  • apps/web/drizzle/0062_many_tarot.sql+35−0
  • apps/web/drizzle/meta/0062_snapshot.json+12154−0
  • apps/web/drizzle/meta/_journal.json+7−0
  • apps/web/lib/api/v1-actor.ts+2−1
  • apps/web/lib/api/v1-openapi.ts+296−1
  • apps/web/lib/bots/permissions.test.ts+3−3
  • apps/web/lib/bots/permissions.ts+3−0
  • apps/web/lib/ci/ci-object-storage.ts+19−1
  • apps/web/lib/ci/ci-workflow-discovery.test.ts+48−1
  • apps/web/lib/ci/ci-workflow-discovery.ts+160−24
  • apps/web/lib/releases/add-release-asset.ts+99−0
  • apps/web/lib/releases/commit-ci-green.test.ts+39−0
  • apps/web/lib/releases/commit-ci-green.ts+35−0
  • apps/web/lib/releases/create-release.ts+166−0
  • apps/web/lib/releases/manage-release.ts+159−0
  • apps/web/lib/releases/overview-downloads.test.ts+58−0
  • apps/web/lib/releases/overview-downloads.ts+28−0
  • apps/web/lib/releases/publish-from-workflow.ts+116−0
  • apps/web/lib/releases/release-build-state.test.ts+74−0
  • apps/web/lib/releases/release-build-state.ts+49−0
  • apps/web/lib/releases/release-hrefs.ts+24−0
  • apps/web/lib/releases/release-names.test.ts+42−0
  • apps/web/lib/releases/release-names.ts+47−0
  • apps/web/lib/releases/release-object-storage.ts+86−0
  • apps/web/lib/releases/serialize-release.ts+51−0
  • apps/web/lib/releases/ship-from-tag-push.ts+133−0
  • apps/web/lib/releases/ship-target.test.ts+41−0
  • apps/web/lib/releases/ship-target.ts+26−0
  • apps/web/next.config.mjs+3−0
  • apps/web/scripts/run-indexing-worker.ts+15−0
  • apps/web/scripts/seed-local-dev.ts+58−0
  • docs/openapi.json+653−1
  • packages/ci-runner-executor/src/docker-runtime.ts+46−0
  • packages/ci-runner-executor/src/freestyle-runtime.ts+32−0
  • packages/ci-runner-executor/src/index.ts+18−7
  • packages/ci-runner-executor/src/runtime.ts+15−0
  • packages/code-storage/src/index.ts+3−0
  • packages/code-storage/src/repo.test.ts+56−0
  • packages/code-storage/src/repo.ts+100−0
  • packages/code-storage/src/types.ts+17−0
  • packages/git-indexing/src/index.test.ts+11−0
  • packages/git-indexing/src/index.ts+8−0
  • packages/workflows/src/index.test.ts+64−0
  • packages/workflows/src/index.ts+136−3