Fix file glob
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Elara 2024-04-26 02:51:46 +00:00
parent 93e9580a0d
commit 6c6723de55
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ export TWINE_REPOSITORY_URL="$PLUGIN_REPOSITORY_URL"
if [ -n "$PLUGIN_COMMENT" ]; then
twine upload dist/music_kraken* --non-interactive --comment "$PLUGIN_COMMENT"
twine upload dist/* --non-interactive --comment "$PLUGIN_COMMENT"
else
twine upload dist/music_kraken* --non-interactive
twine upload dist/* --non-interactive
fi