Skip to content

Commit

Permalink
fork org
Browse files Browse the repository at this point in the history
  • Loading branch information
fastfadingviolets committed Jul 16, 2024
1 parent cdcdcb3 commit 8d095c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/interchain-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
uses: actions/setup-go@v5
- name: Run test
env:
TEST_DOCKER_REGISTRY: "ghcr.io/cosmos"
TEST_DOCKER_REGISTRY: "ghcr.io/fastfadingviolets"
TEST_OLD_GAIA_IMAGE_VERSION: "${{ matrix.previous_version }}"
TEST_NEW_GAIA_IMAGE_VERSION: "${{ matrix.test_version }}"
TEST_UPGRADE_NAME: "${{ matrix.upgrade_name }}"
run: |
go test -v ./tests/interchain/... -failfast -p 1 -timeout 5h -run="^${{ matrix.test_name }}"
go test -v ./tests/interchain/... -failfast -p 1 -timeout 5h -run="^${{ matrix.test_name }}"
2 changes: 1 addition & 1 deletion tests/interchain/matrix_tool/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

func GetPreviousMajorMinor(ctx context.Context, testVersion string) (previousMajor string, previousMinor string, upgradeName string, err error) {
client := github.NewClient(nil)
releaes, _, err := client.Repositories.ListReleases(ctx, "cosmos", "gaia", nil)
releaes, _, err := client.Repositories.ListReleases(ctx, "fastfadingviolets", "gaia", nil)
if err != nil {
err = fmt.Errorf("ListReleases failed: %w", err)
return
Expand Down

0 comments on commit 8d095c3

Please sign in to comment.