You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a release script: build/package/auto-release-darwin-arm64.sh, it starts with:
#! /bin/bash -eset -o nounset
tag=v0.5.0
So we need to change this tag variable every time when we release a new version, which is obviously inelegant. So, why not set this tag with a parameter? Something like:
sh xxx.sh tag=v0.5.0
By the way, after the script improvement, please move the scripts auto-release-darwin-arm64.sh and upload_assets.sh under the build/package folder to hack/release/.
The text was updated successfully, but these errors were encountered:
What would you like to added? Why is this needed?
We have a release script:
build/package/auto-release-darwin-arm64.sh
, it starts with:So we need to change this
tag
variable every time when we release a new version, which is obviously inelegant. So, why not set thistag
with a parameter? Something like:By the way, after the script improvement, please move the scripts
auto-release-darwin-arm64.sh
andupload_assets.sh
under thebuild/package
folder tohack/release/
.The text was updated successfully, but these errors were encountered: