Skip to content

Commit

Permalink
chore(workflows): publish as ghcr.io/birthdayresearch (#2102)
Browse files Browse the repository at this point in the history
#### What this PR does / why we need it:

As per title.
  • Loading branch information
fuxingloh authored May 23, 2023
1 parent e521a94 commit d15b4c7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/release-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ You can also get an immutable image with the commit hash

function getContainerPRLinks({ payload: { number } }) {
const apps = process.env.APPS.split(',')
return apps.map(app => `ghcr.io/jellyfishsdk/${app}:pr-${number}`)
return apps.map(app => `ghcr.io/birthdayresearch/${app}:pr-${number}`)
}

function getContainerHashLinks({ sha }) {
const apps = process.env.APPS.split(',')
return apps.map(app => `ghcr.io/jellyfishsdk/${app}:${sha}`)
return apps.map(app => `ghcr.io/birthdayresearch/${app}:${sha}`)
}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ jobs:
push: false
build-args: APP=${{ matrix.app }}
platforms: ${{ matrix.platform }}
tags: ghcr.io/jellyfishsdk/${{ matrix.app }}:latest
tags: ghcr.io/birthdayresearch/${{ matrix.app }}:latest
4 changes: 2 additions & 2 deletions .github/workflows/release-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
linux/amd64
linux/arm64
tags: ${{ steps.tags.outputs.result }}
cache-from: type=registry,ref=ghcr.io/jellyfishsdk/jellyfish:buildcache
cache-to: type=registry,ref=ghcr.io/jellyfishsdk/jellyfish:buildcache,mode=max
cache-from: type=registry,ref=ghcr.io/birthdayresearch/jellyfish:buildcache
cache-to: type=registry,ref=ghcr.io/birthdayresearch/jellyfish:buildcache,mode=max

report:
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const PLAYGROUND_VERSION = packageJson.version === '0.0.0' ? 'latest' : packageJ
const PLAYGROUND_API_PORT = 3000

export class PlaygroundApiContainer extends GenericContainer {
constructor (image: string = `ghcr.io/jellyfishsdk/playground-api:${PLAYGROUND_VERSION}`) {
constructor (image: string = `ghcr.io/birthdayresearch/playground-api:${PLAYGROUND_VERSION}`) {
super(image)
this.withExposedPorts(PLAYGROUND_API_PORT).withStartupTimeout(120_000)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const WHALE_API_PORT = 3000
const WHALE_VERSION = packageJson.version === '0.0.0' ? 'latest' : packageJson.version

export class WhaleApiContainer extends GenericContainer {
constructor (image: string = `ghcr.io/jellyfishsdk/whale-api:${WHALE_VERSION}`) {
constructor (image: string = `ghcr.io/birthdayresearch/whale-api:${WHALE_VERSION}`) {
super(image)
this.withExposedPorts(WHALE_API_PORT).withStartupTimeout(120_000)
}
Expand Down

0 comments on commit d15b4c7

Please sign in to comment.