Skip to content

Commit

Permalink
Fix wrong repo owner name in goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
rishinair11 committed Jun 23, 2024
1 parent acb17f2 commit 2fd5ea6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ sboms:

release:
github:
owner: rishnai1
owner: rishinair11
name: flux-graph
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/rishnai1/flux-ks-graph
module github.com/rishinair11/flux-ks-graph

go 1.22.3

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"log"
"os"

"github.com/rishnai1/flux-ks-graph/pkg/graph"
"github.com/rishnai1/flux-ks-graph/pkg/resource"
"github.com/rishinair11/flux-ks-graph/pkg/graph"
"github.com/rishinair11/flux-ks-graph/pkg/resource"
"github.com/spf13/cobra"
"gopkg.in/yaml.v3"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/graph/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/awalterschulze/gographviz"
"github.com/golang-collections/collections/stack"
"github.com/rishnai1/flux-ks-graph/pkg/resource"
"github.com/rishinair11/flux-ks-graph/pkg/resource"
)

// ProcessGraph creates a Graphviz graph from the given ResourceTree
Expand Down
2 changes: 1 addition & 1 deletion pkg/graph/graph_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package graph
import (
"testing"

"github.com/rishnai1/flux-ks-graph/pkg/resource"
"github.com/rishinair11/flux-ks-graph/pkg/resource"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit 2fd5ea6

Please sign in to comment.