d5f55b5f9c
Coverage / build (push) Has been cancelled
Docker / Build (push) Has been cancelled
Docker / Publish (push) Has been cancelled
Node.js CI / build (16, macos-latest) (push) Has been cancelled
Node.js CI / build (16, ubuntu-latest) (push) Has been cancelled
Node.js CI / build (16, windows-latest) (push) Has been cancelled
NPM / Build (22) (push) Has been cancelled
NPM / Pack (push) Has been cancelled
NPM / Publish (push) Has been cancelled
16 lines
234 B
Bash
Executable File
16 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Author: Huan LI <zixia@zixia.net>
|
|
# https://github.com/zixia
|
|
# License: Apache-2.0
|
|
#
|
|
|
|
[ -z "$1" ] && {
|
|
echo
|
|
echo "Usage: npm-set-latest.sh <version>"
|
|
echo
|
|
exit 1
|
|
}
|
|
|
|
npm dist-tag add "wechaty@$1" latest
|