[Bug]タグ名が `v` 付きになっていない
Closed this issue · 1 comments
o108minmin commented
課題 or やりたいこと
- githubがバージョンの命名規則を推奨してくれたのでタグもv付きに変える
Tagging suggestions
It’s common practice to prefix your version names with the letter v. Some good tag names might be v1.0.0 or v2.3.4.
If the tag isn’t meant for production use, add a pre-release version after the version name. Some good pre-release versions might be v0.2.0-alpha or v5.9-beta.3.
やること
- tagを変えるという
狂気的なこと
を実行する
-【git tag】プッシュしたtag名を削除・変更してはいけない理由〜manコマンドで読めるgitメンテナの怒り〜
- https://qiita.com/growsic/items/60928fc67c9efe373a73 - 各リリースの名前をv付きに変える
- 各リリースの参照タグをv付きに変える
- release ciを修正する
o108minmin commented
tagを変えるという 狂気的なこと を実行する
$ git tag v1.2.0 1.2.0
$ git tag v1.2.1 1.2.1
$ git tag v1.2.2 1.2.2
$ git tag v1.2.3 1.2.3
$ git tag v1.2.4 1.2.4
$ git tag v1.2.5 1.2.5
$ git tag v1.1.0 1.1.0
$ git tag v1.0.0 1.0.0
$ git push origin v1.2.0
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.2.0 -> v1.2.0
$ git push origin v1.2.1
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.2.1 -> v1.2.1
$ git push origin v1.2.2
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.2.2 -> v1.2.2
$ git push origin v1.2.3
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.2.3 -> v1.2.3
$ git push origin v1.2.4
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.2.4 -> v1.2.4
$ git push origin v1.2.5
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.2.5 -> v1.2.5
$ git push origin v1.1.0
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.1.0 -> v1.1.0
$ git push origin v1.0.0
Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/o108minmin/halberd.git
* [new tag] v1.0.0 -> v1.0.0