Skip to content

Commit

Permalink
Fixed usage of true.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Dec 18, 2024
1 parent 12991ee commit cf095af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/NightlyRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ jobs:
addDraft="--draft"
if ${{ inputs.prerelease }}; then
if [[ ${{ inputs.prerelease }} == true ]]; then
addPreRelease="--prerelease"
fi
if ! ${{ inputs.latest }}; then
if [[ ${{ inputs.latest }} == false ]]; then
addLatest="--latest=false"
fi
Expand Down
2 changes: 1 addition & 1 deletion dist/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
wheel ~= 0.45
twine ~= 5.1
twine ~= 6.0

0 comments on commit cf095af

Please sign in to comment.