Skip to content

Commit df5ad4c

Browse files
Merge pull request #129 from nullinside-development-group/feat/logging
feat: logging
2 parents 18cb7e3 + 3c7c8d9 commit df5ad4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN curl -L \
2929
-X POST \
3030
-H "Accept: application/vnd.github+json" \
3131
-H "Authorization: Bearer $GITHUB_TOKEN" \
32-
https://api.github.com/repos/nullinside-development-group/twitch-streaming-tools/releases \
32+
https://api.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/releases \
3333
-d '{"tag_name":"'$TAG_VERSION'","target_commitish":"main","name":"'$TAG_VERSION'","body":"'$DESCRIPTION'","draft":false,"prerelease":false,"generate_release_notes":false}'
3434

3535
# Upload the files to the release. We need to get the ID for the release we created first and then upload the zips.
@@ -38,13 +38,13 @@ RUN curl -L \
3838
RUN export RELEASE_ID=$(curl -L \
3939
-H "Accept: application/vnd.github+json" \
4040
-H "Authorization: Bearer $GITHUB_TOKEN" \
41-
"https://api.github.com/repos/nullinside-development-group/twitch-streaming-tools/releases/latest" \
41+
"https://api.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/releases/latest" \
4242
| jq .id) && \
4343
echo "Release ID: "$RELEASE_ID && \
4444
curl -L \
4545
-X POST \
4646
-H "Accept: application/vnd.github+json" \
4747
-H "Authorization: Bearer $GITHUB_TOKEN" \
4848
-H "Content-Type: application/octet-stream" \
49-
"https://uploads.github.com/repos/nullinside-development-group/twitch-streaming-tools/releases/$RELEASE_ID/assets?name=twitch-streaming-tools.zip" \
49+
"https://uploads.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/releases/$RELEASE_ID/assets?name=twitch-streaming-tools.zip" \
5050
--data-binary "@/app/publish/twitch-streaming-tools.zip"

0 commit comments

Comments
 (0)