Skip to content

Commit

Permalink
ci: when creating bundles, strip extension names (#2126)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys authored May 15, 2024
1 parent f0a0957 commit eafe031
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,11 @@ jobs:
run: >
for llama_server in llama-server_*/llama-server_*; do
for tabby in tabby_*/tabby_*; do
llaman=$(basename $llama_server)
tabbyn=$(basename $tabby)
llamab=$(basename $llama_server)
tabbyb=$(basename $tabby)
llaman=${llamab%.*}
tabbyn=${tabbyb%.*}
llamav=${llaman#llama-server_}
tabbyv=${tabbyn#tabby_}
Expand Down

0 comments on commit eafe031

Please sign in to comment.