Skip to content

Commit

Permalink
build: change package and image name to kafrest
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricioromagnollo committed Oct 14, 2023
1 parent 44e9287 commit e2432f0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Build the Docker image
run: |
docker build -t mauricioromagnollo/kafka-rest:latest .
docker build -t mauricioromagnollo/kafrest:latest .
- name: Login to Docker Hub
run: |
Expand All @@ -32,4 +32,4 @@ jobs:
- name: Publish Docker Image to Docker Hub
if: success()
run: |
docker push mauricioromagnollo/kafka-rest
docker push mauricioromagnollo/kafrest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# kafkarest
# **kafrest**
4 changes: 2 additions & 2 deletions cmd/api/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"net/http"

"github.com/go-chi/chi/v5"
"github.com/mauricioromagnollo/kafkarest/external/config"
"github.com/mauricioromagnollo/kafkarest/external/controllers"
"github.com/mauricioromagnollo/kafrest/external/config"
"github.com/mauricioromagnollo/kafrest/external/controllers"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion external/controllers/publish_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/json"
"net/http"

"github.com/mauricioromagnollo/kafkarest/external/config"
"github.com/mauricioromagnollo/kafrest/external/config"
"github.com/segmentio/kafka-go"
)

Expand Down
2 changes: 1 addition & 1 deletion external/controllers/status_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package controllers
import (
"net/http"

"github.com/mauricioromagnollo/kafkarest/external/config"
"github.com/mauricioromagnollo/kafrest/external/config"
)

type StatusController struct {
Expand Down
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/mauricioromagnollo/kafkarest
module github.com/mauricioromagnollo/kafrest

go 1.20

Expand Down

0 comments on commit e2432f0

Please sign in to comment.