Skip to content

Commit

Permalink
update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jethrodaniel committed Apr 3, 2024
1 parent 8cf9e4d commit 22258f6
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,20 @@ tree tmp
cd tmp

# NOTE: on linux, use --owner=0 --group=0
tar czvf vosk-0.3.45-x86_64-macos.tar.gz --uid=0 --gid=0 x86_64-macos
tar czvf vosk-0.3.45-aarch64-macos.tar.gz --uid=0 --gid=0 aarch64-macos
tar czvf vosk-0.3.48-x86_64-macos.tar.gz --uid=0 --gid=0 x86_64-macos
tar czvf vosk-0.3.48-aarch64-macos.tar.gz --uid=0 --gid=0 aarch64-macos

TAG='v0.1.0'
TAG='v0.2.0'

gh release create "$TAG" -n '
gh release create "$TAG" -n "
Builds of https://github.com/alphacep/vosk-api.
### NOTE
This initial release is only for MacOS, and uses `-framework Accelerate`.
'
v0.3.48 isn't officially released yet.
gh release upload --clobber "$TAG" vosk-0.3.45-x86_64-macos.tar.gz
gh release upload --clobber "$TAG" vosk-0.3.45-aarch64-macos.tar.gz
Vosk version: https://github.com/alphacep/vosk-api/tree/40937b6bcbe318eeb01879093c59cf5a1219a29d
"

gh release upload --clobber "$TAG" vosk-0.3.48-x86_64-macos.tar.gz
gh release upload --clobber "$TAG" vosk-0.3.48-aarch64-macos.tar.gz

0 comments on commit 22258f6

Please sign in to comment.