Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit fc120dd

Browse files
authored
Merge pull request #6 from microsoft/update-task-names
Update ado task id
2 parents 281777d + 2df88e5 commit fc120dd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is currently in very early stages so, features offered are very limited. Se
99
- In a Azure DevOps Pipeline
1010

1111
```yml
12-
- task: android-app-size-diff-task@0
12+
- task: android-app-size-diff@0
1313
inputs:
1414
baseAppPath: test/assets/test.apk
1515
targetAppPath: test/assets/test.apk
@@ -20,7 +20,7 @@ This is currently in very early stages so, features offered are very limited. Se
2020
- In a GitHub Workflow (only after this repo becomes public)
2121
2222
```yml
23-
- uses: microsoft/android-app-size-ci@v1
23+
- uses: microsoft/android-app-size-diff@v1
2424
name: Run APK size comparision
2525
with:
2626
baseAppPath: test/assets/test.apk

ado-extension.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"manifestVersion": 1,
3-
"id": "android-app-size-diff",
3+
"id": "android-app-size-diff-utils",
44
"name": "Android app size changes",
5-
"version": "0.0.24",
5+
"version": "0.0.25",
66
"publisher": "PraveenPendyala",
77
"targets": [
88
{
@@ -23,7 +23,7 @@
2323
],
2424
"contributions": [
2525
{
26-
"id": "android-app-size-diff-task",
26+
"id": "android-app-size-diff",
2727
"type": "ms.vss-distributed-task.task",
2828
"targets": [
2929
"ms.vss-distributed-task.tasks"

ado-task-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pool:
55
vmImage: 'ubuntu-latest'
66

77
steps:
8-
- task: android-app-size-diff-task@0
8+
- task: android-app-size-diff@0
99
inputs:
1010
baseAppPath: test/assets/test.apk
1111
targetAppPath: test/assets/test.apk

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "android-app-size-ado",
3-
"version": "0.0.24",
2+
"name": "android-app-size-diff",
3+
"version": "0.0.25",
44
"description": "Azure DevOps task to measure the size in Android app size by looking at 2 given APKs and AABs",
55
"main": "index.js",
66
"scripts": {

src/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json",
33
"id": "911fb029-c89b-4d09-a2d4-610486918018",
4-
"name": "android-app-size-diff-task",
4+
"name": "android-app-size-diff",
55
"friendlyName": "Android app size change summary",
66
"description": "Generates a summary of Android application size across different metrics",
77
"helpMarkDown": "",
@@ -10,7 +10,7 @@
1010
"version": {
1111
"Major": 0,
1212
"Minor": 0,
13-
"Patch": 24
13+
"Patch": 25
1414
},
1515
"instanceNameFormat": "Android App size change - $(baseAppPath) vs $(targetAppPath)",
1616
"inputs": [

0 commit comments

Comments
 (0)