Browse Source

Release v0.0.1

pull/1/MERGE
zhugengyu 3 years ago
parent
commit
bb85a5dfeb
  1. 5
      scripts/release_tag.sh

5
scripts/release_tag.sh

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0.
#
# @Date: 2021-07-02 10:54:34
# @LastEditTime: 2021-07-02 10:57:41
# @LastEditTime: 2021-07-02 11:02:29
# @Description:  This files is for
#
# @Modify History:
@ -14,7 +14,8 @@
#!/bin/sh
version=v0.0.1
branch=master
git add .
git tag -a $version -m "Release $version"
git commit -m "Release $version"
git push --tags
git push origin $branch --tags
Loading…
Cancel
Save