File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change 2121# License: MIT #
2222# Maintainer: Francesco Bianco #
2323# Contact: https://openapi.com/ #
24- # Repository: [Repository URL] #
25- # Documentation: [Docs URL] #
24+ # Repository: https://github.com/openapi/openapi-php-sdk/ #
25+ # Documentation: https://console.openapi.com/ #
2626# #
2727# ═══════════════════════════════════════════════════════════════════════ #
2828# #
3131# #
3232# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3333
34+ # # =========
35+ # # Variables
36+ # # =========
37+
38+ VERSION := 1.2.1
3439
3540# # ====================
3641# # Development Commands
@@ -41,3 +46,18 @@ dev-push:
4146 @git add .
4247 @git commit -m " $$ (read -p 'Commit message: ' msg; echo $$ msg)" || true
4348 @git push
49+
50+ # # ================
51+ # # Release Commands
52+ # # ================
53+
54+ push :
55+ @git add .
56+ @git commit -am " Updated at $$ (date)" || true
57+ @git push
58+
59+ release : push
60+ @git add .
61+ @git commit -m " Update PHP SDK to version ${VERSION} " || echo " No changes to commit"
62+ @git tag -fa " v${VERSION} " -m " ${VERSION} "
63+ @git push origin --tags -f
You can’t perform that action at this time.
0 commit comments