Skip to content

Commit 0602797

Browse files
anandgupta42claude
andcommitted
chore: remove Docker build step from release pipeline
Docker distribution is not needed. The unconditional docker buildx call would have blocked the AUR/Homebrew updates that follow it. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4adee80 commit 0602797

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
permissions:
99
contents: write
1010
id-token: write
11-
packages: write
1211

1312
env:
1413
GH_REPO: AltimateAI/altimate-code

packages/altimate-code/script/publish.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ const tasks = Object.entries(binaries).map(async ([name]) => {
4949
await Promise.all(tasks)
5050
await $`cd ./dist/${pkg.name} && bun pm pack && npm publish *.tgz --access public --tag ${Script.channel}`
5151

52-
const image = "ghcr.io/altimateai/altimate-code"
53-
const platforms = "linux/amd64,linux/arm64"
54-
const tags = [`${image}:${version}`, `${image}:${Script.channel}`]
55-
const tagFlags = tags.flatMap((t) => ["-t", t])
56-
await $`docker buildx build --platform ${platforms} ${tagFlags} --push .`
57-
5852
// registries
5953
if (!Script.preview) {
6054
// Calculate SHA values

0 commit comments

Comments
 (0)