Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]タグ名が v 付きになっていない #31

Closed
4 tasks done
o108minmin opened this issue Apr 17, 2022 · 1 comment · Fixed by #32
Closed
4 tasks done

[Bug]タグ名が v 付きになっていない #31

o108minmin opened this issue Apr 17, 2022 · 1 comment · Fixed by #32
Assignees

Comments

@o108minmin
Copy link
Owner

o108minmin commented Apr 17, 2022

課題 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 o108minmin added bug Something isn't working enhancement New feature or request labels Apr 17, 2022
@o108minmin o108minmin self-assigned this Apr 17, 2022
@o108minmin
Copy link
Owner Author

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

@o108minmin o108minmin added refactoring and removed bug Something isn't working enhancement New feature or request labels Apr 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant