Skip to content

Commit

Permalink
Fix references after transfer from ForkingGeniuses
Browse files Browse the repository at this point in the history
This commit fixes all the references after the moving this repo from ForkingGeniuses to yonatankarp account
  • Loading branch information
yonatankarp committed Aug 23, 2023
1 parent 9321aaa commit aec8a47
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Build Docker Image
id: container
run: |
docker build --file ./Dockerfile --tag ghcr.io/forkinggeniuses/${{ matrix.service }}:latest --tag ghcr.io/forkinggeniuses/${{ matrix.service }}:${{ steps.version.outputs.VERSION }} .
docker build --file ./Dockerfile --tag ghcr.io/yonatankarp/${{ matrix.service }}:latest --tag ghcr.io/yonatankarp/${{ matrix.service }}:${{ steps.version.outputs.VERSION }} .
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand All @@ -69,5 +69,5 @@ jobs:
--username $ \
--password-stdin
docker push ghcr.io/forkinggeniuses/${{ matrix.service }}:${{ steps.version.outputs.VERSION }}
docker push ghcr.io/forkinggeniuses/${{ matrix.service }}:latest
docker push ghcr.io/yonatankarp/${{ matrix.service }}:${{ steps.version.outputs.VERSION }}
docker push ghcr.io/yonatankarp/${{ matrix.service }}:latest
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM --platform=linux/x86_64 eclipse-temurin:17-jre-alpine

ENV APP_BASE="/home" \
APP_NAME="cat-fact-service" \
OTEL_ATTRIBUTES="github.repository=https://github.com/ForkingGeniuses/cat-fact-service" \
OTEL_ATTRIBUTES="github.repository=https://github.com/yonatankarp/cat-fact-service" \
SERVER_PORT="8080"

EXPOSE ${SERVER_PORT}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Cat Fact Service

A simple cat fact service application, service a JSON endpoint and using the
[cat-fact client library](https://github.com/ForkingGeniuses/cat-fact-client)
[cat-fact client library](https://github.com/yonatankarp/cat-fact-client)
to get the facts about cats.

This is the example application described in the article [LINK TO ARTICLE]()
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ repositories {
mavenCentral()
maven { url = uri("https://packages.confluent.io/maven/") }
maven {
url = uri("https://maven.pkg.github.com/ForkingGeniuses/cat-fact-service")
url = uri("https://maven.pkg.github.com/yonatankarp/cat-fact-service")
credentials {
username = findProperty("gpr.user")?.toString() ?: System.getenv("GITHUB_ACTOR")
password = findProperty("gpr.key")?.toString() ?: System.getenv("GITHUB_TOKEN")
}
}
maven {
url = uri("https://maven.pkg.github.com/ForkingGeniuses/cat-fact-client")
url = uri("https://maven.pkg.github.com/yonatankarp/cat-fact-client")
credentials {
username = project.findProperty("gpr.user")?.toString() ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key")?.toString() ?: System.getenv("PACKAGES_READ_TOKEN")
Expand Down Expand Up @@ -84,7 +84,7 @@ tasks {

jvmArgs = listOf(
"-javaagent:${layout.buildDirectory.get().asFile}/output/libs/honeycomb-opentelemetry-javaagent.jar",
"-Dotel.resource.attributes=github.repository=https://github.com/ForkingGeniuses/cat-fact-service",
"-Dotel.resource.attributes=github.repository=https://github.com/yonatankarp/cat-fact-service",
)
}

Expand Down

0 comments on commit aec8a47

Please sign in to comment.