We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
リリース作業リスト
lib/tdiary/tasks/release.rake
.github/workflow/ci.yml
git pull --tags; git tag vL.M.N; git push origin vL.M.N
bundle clean; bundle exec rake release
bundle exec rake package:stable package:release
git checkout gh-pages; git merge master; git push origin gh-pages
docker build . -t tdiary/tdiary:L.M.N
push
L.M
L
latest
YYYY-MM-DD-release-L_M_N.md
The text was updated successfully, but these errors were encountered:
No branches or pull requests
リリース作業リスト
lib/tdiary/tasks/release.rake
と.github/workflow/ci.yml
に今回サポートを追加/停止するrubyのバージョンが含まれるか確認、修正するgit pull --tags; git tag vL.M.N; git push origin vL.M.N
)bundle clean; bundle exec rake release
コマンドを実行する (gemを最新にしてrubygemsにアップロード)bundle exec rake package:stable package:release
コマンドを実行する(GitHub に tar.gz をアップロードする。GITHUB_ACCESS_TOKEN環境変数が必要なので注意, see change package:release destination from tdiary.org to github.com #573)git checkout gh-pages; git merge master; git push origin gh-pages
)docker build . -t tdiary/tdiary:L.M.N
を実行してから、push
する (L.M
,L
,latest
も同様)YYYY-MM-DD-release-L_M_N.md
形式で)The text was updated successfully, but these errors were encountered: