We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1fddd7 commit 5fe32d7Copy full SHA for 5fe32d7
build.gradle
@@ -47,12 +47,12 @@ publishPlugin {
47
token = System.getenv("MAGENTO_PHPSTORM_intellijPublishToken")
48
if (System.getenv("MAGENTO_PHPSTORM_isAlpha") == true) {
49
channels 'alpha'
50
- version = version + "-alpha" + "-build" + getDate()
+ version = version + "-alpha-" + getDate()
51
}
52
53
54
static def getDate() {
55
def date = new Date()
56
- def formattedDate = date.format('yyyyMMddHHmmss')
+ def formattedDate = date.format('yyyy-MM-dd-HH-mm')
57
return formattedDate
58
0 commit comments