From 3c7c8d9f1d5bc04d7c5fbe171c67f7cf9a42b5f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88?= Date: Tue, 30 Sep 2025 13:15:36 -0400 Subject: [PATCH] feat: logging --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c17f77..8a96335 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN curl -L \ -X POST \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer $GITHUB_TOKEN" \ - https://api.github.com/repos/nullinside-development-group/twitch-streaming-tools/releases \ + https://api.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/releases \ -d '{"tag_name":"'$TAG_VERSION'","target_commitish":"main","name":"'$TAG_VERSION'","body":"'$DESCRIPTION'","draft":false,"prerelease":false,"generate_release_notes":false}' # Upload the files to the release. We need to get the ID for the release we created first and then upload the zips. @@ -38,7 +38,7 @@ RUN curl -L \ RUN export RELEASE_ID=$(curl -L \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer $GITHUB_TOKEN" \ - "https://api.github.com/repos/nullinside-development-group/twitch-streaming-tools/releases/latest" \ + "https://api.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/releases/latest" \ | jq .id) && \ echo "Release ID: "$RELEASE_ID && \ curl -L \ @@ -46,5 +46,5 @@ RUN export RELEASE_ID=$(curl -L \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer $GITHUB_TOKEN" \ -H "Content-Type: application/octet-stream" \ - "https://uploads.github.com/repos/nullinside-development-group/twitch-streaming-tools/releases/$RELEASE_ID/assets?name=twitch-streaming-tools.zip" \ + "https://uploads.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/releases/$RELEASE_ID/assets?name=twitch-streaming-tools.zip" \ --data-binary "@/app/publish/twitch-streaming-tools.zip" \ No newline at end of file