Skip to content

Commit

Permalink
Add major version to task directories names (#290)
Browse files Browse the repository at this point in the history
* add major version to task names

* fix task paths in extension.json
  • Loading branch information
DaniilShmelev authored Sep 6, 2021
1 parent e9c49c1 commit 048f1fb
Show file tree
Hide file tree
Showing 105 changed files with 25 additions and 25 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "3",
"Minor": "189",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "3",
"Minor": "189",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "3",
"Minor": "192",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "3",
"Minor": "192",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "3",
"Minor": "189",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "3",
"Minor": "189",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "2",
"Minor": "189",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "2",
"Minor": "189",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "2",
"Minor": "192",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"version": {
"Major": "2",
"Minor": "192",
"Minor": "193",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions make-options.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"tasks": [
"GooglePlayRelease",
"GooglePlayReleaseBundle",
"GooglePlayPromote",
"GooglePlayRolloutUpdate",
"GooglePlayStatusUpdate"
"GooglePlayReleaseV3",
"GooglePlayReleaseBundleV3",
"GooglePlayPromoteV2",
"GooglePlayRolloutUpdateV3",
"GooglePlayStatusUpdateV2"
],
"taskResources": [
"*.ps1",
Expand Down
20 changes: 10 additions & 10 deletions vsts-extension-google-play.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@
},
"files": [
{
"path": "_build/Tasks/GooglePlayRelease"
"path": "_build/Tasks/GooglePlayReleaseV3"
},
{
"path": "_build/Tasks/GooglePlayReleaseBundle"
"path": "_build/Tasks/GooglePlayReleaseBundleV3"
},
{
"path": "_build/Tasks/GooglePlayPromote"
"path": "_build/Tasks/GooglePlayPromoteV2"
},
{
"path": "_build/Tasks/GooglePlayRolloutUpdate"
"path": "_build/Tasks/GooglePlayRolloutUpdateV3"
},
{
"path": "_build/Tasks/GooglePlayStatusUpdate"
"path": "_build/Tasks/GooglePlayStatusUpdateV2"
},
{
"path": "images",
Expand Down Expand Up @@ -81,7 +81,7 @@
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayRelease"
"name": "_build/Tasks/GooglePlayReleaseV3"
}
},
{
Expand All @@ -91,7 +91,7 @@
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayReleaseBundle"
"name": "_build/Tasks/GooglePlayReleaseBundleV3"
}
},
{
Expand All @@ -101,7 +101,7 @@
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayPromote"
"name": "_build/Tasks/GooglePlayPromoteV2"
}
},
{
Expand All @@ -111,7 +111,7 @@
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayRolloutUpdate"
"name": "_build/Tasks/GooglePlayRolloutUpdateV3"
}
},
{
Expand All @@ -121,7 +121,7 @@
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "_build/Tasks/GooglePlayStatusUpdate"
"name": "_build/Tasks/GooglePlayStatusUpdateV2"
}
},
{
Expand Down

0 comments on commit 048f1fb

Please sign in to comment.