Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
DAMcraft committed Dec 19, 2023
1 parent 351d150 commit 78b8cd3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/prerelease.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def main():
"Authorization": f"Bearer {GITHUB_TOKEN}"
}
)
print(del_req.text)

# New release
req = requests.post(
Expand All @@ -79,7 +78,6 @@ def main():
"make_latest": 'true'
}
)
print(req.json())
release_id = req.json()['id']

# Upload jar
Expand All @@ -91,7 +89,6 @@ def main():
},
data=open(f'./build/libs/{jar}', 'rb')
)
print(upload_req.json())

if DISCORD_WEBHOOK is not None:
requests.post(
Expand Down

0 comments on commit 78b8cd3

Please sign in to comment.