diff --git a/.github/workflows/interchaintest.yml b/.github/workflows/interchaintest.yml index 4529d0fed..68751edad 100644 --- a/.github/workflows/interchaintest.yml +++ b/.github/workflows/interchaintest.yml @@ -33,7 +33,8 @@ jobs: push: true platforms: linux/amd64 tags: | - ghcr.io/notional-labs/centauri-ictest:latest + ghcr.io/composablefi/composable-cosmos/centauri-ictest:latest + test-start-cosmos-chain: runs-on: ubuntu-latest needs: build-and-push-image diff --git a/tests/interchaintest/setup.go b/tests/interchaintest/setup.go index 74e6b338c..a34849e39 100644 --- a/tests/interchaintest/setup.go +++ b/tests/interchaintest/setup.go @@ -8,8 +8,8 @@ import ( ) var ( - CentauriMainRepo = "ghcr.io/notional-labs/centauri" - CentauriICTestRepo = "ghcr.io/notional-labs/centauri-ictest" + CentauriGhcr = "ghcr.io/composablefi/composable-cosmos" + CentauriICTGhcr = "ghcr.io/composablefi/composable-cosmos/centauri-ictest" repo, version = GetDockerImageInfo() @@ -42,7 +42,7 @@ var ( // If testing locally, user should run `make docker-build-debug` and interchaintest will use the local image. func GetDockerImageInfo() (repo, version string) { branchVersion, found := os.LookupEnv("BRANCH_CI") - repo = CentauriICTestRepo + repo = CentauriGhcr if !found { // make local-image repo = "centauri"