Skip to content

Commit 1371804

Browse files
Updated at mar 9 dic 2025, 18:15:43, CET
1 parent a49d178 commit 1371804

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

Makefile

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
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
# #
@@ -31,6 +31,11 @@
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

0 commit comments

Comments
 (0)