Skip to content

Commit 02ff409

Browse files
committed
chore: fix docker tag
1 parent 42a3aa1 commit 02ff409

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,12 @@ jobs:
182182
docker_password: ${{ secrets.DOCKER_CI_ACCESS_TOKEN }}
183183
github_token: ${{ secrets.GITHUB_TOKEN}}
184184

185-
- name: Build & Push (rivetgg/engine:full)
185+
- name: Build & Push (rivetkit/engine:full)
186186
uses: docker/build-push-action@v4
187187
with:
188188
context: .
189189
push: true
190-
tags: rivetgg/rivet-engine:full-${{ steps.vars.outputs.sha_short }}${{ matrix.arch_suffix }}
190+
tags: rivetkit/engine:full-${{ steps.vars.outputs.sha_short }}${{ matrix.arch_suffix }}
191191
file: docker/universal/Dockerfile
192192
target: engine-full
193193
platforms: ${{ matrix.platform }}
@@ -196,12 +196,12 @@ jobs:
196196
# secret-files: |
197197
# netrc=${{ runner.temp }}/netrc
198198

199-
- name: Build & Push (rivetgg/engine:slim)
199+
- name: Build & Push (rivetkit/engine:slim)
200200
uses: docker/build-push-action@v4
201201
with:
202202
context: .
203203
push: true
204-
tags: rivetgg/rivet-engine:slim-${{ steps.vars.outputs.sha_short }}${{ matrix.arch_suffix }}
204+
tags: rivetkit/engine:slim-${{ steps.vars.outputs.sha_short }}${{ matrix.arch_suffix }}
205205
file: docker/universal/Dockerfile
206206
target: engine-slim
207207
platforms: ${{ matrix.platform }}

scripts/release/docker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { $ } from "execa";
22

33
const REPOS = [
4-
{ name: "rivetgg/rivet-engine", prefix: "slim", main: true },
5-
{ name: "rivetgg/rivet-engine", prefix: "full" },
4+
{ name: "rivetkit/engine", prefix: "slim", main: true },
5+
{ name: "rivetkit/engine", prefix: "full" },
66
]
77

88
export async function tagDocker(opts: { version: string; commit: string; latest: boolean }) {

0 commit comments

Comments
 (0)