Skip to content

Commit

Permalink
change image push registry to create image
Browse files Browse the repository at this point in the history
  • Loading branch information
YashwantGohokar committed Jun 24, 2024
1 parent a39f49e commit 825225f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${GITHUB_ACTOR,,} --password-stdin

- name: Build Image
run: OSS_REGISTRY="ghcr.io/oracle" VERSION="${{ github.ref_name }}" make image
run: OSS_REGISTRY="ghcr.io/${GITHUB_ACTOR,,}" VERSION="${{ github.ref_name }}" make image

- name: Push Image
run: OSS_REGISTRY="ghcr.io/oracle" VERSION="${{ github.ref_name }}" make docker-push-all
run: OSS_REGISTRY="ghcr.io/${GITHUB_ACTOR,,}" VERSION="${{ github.ref_name }}" make docker-push-all
2 changes: 1 addition & 1 deletion pkg/cloudprovider/providers/oci/load_balancer_spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2733,7 +2733,7 @@ func TestNewLBSpecForTags(t *testing.T) {
return newSecurityListManagerNOOP()
}

result, err := NewLBSpec(logger.Sugar(), tc.service, tc.nodes, tc.virtualPods, subnets, tc.sslConfig, slManagerFactory, tc.clusterTags, nil)
result, err := NewLBSpec(logger.Sugar(), tc.service, tc.nodes, subnets, tc.sslConfig, slManagerFactory, tc.clusterTags, nil)
if err != nil {
t.Error(err)
}
Expand Down

0 comments on commit 825225f

Please sign in to comment.