Skip to content

Commit 72bcfc9

Browse files
committed
Fix action metadata
1 parent 04744fe commit 72bcfc9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: "Increment the version code of your project"
2-
description: "This action will increment the version code directly in build.gradle . "
1+
name: "Increment the version code/name of your Android project"
2+
description: "This action will increment the version code/name directly in build.gradle . "
33
inputs:
44
gradlePath:
55
description: "Gradle path to override version"

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ try {
2929
if (err) throw err;
3030
console.log(`Successfully override version code ${versionCode}`)
3131
if (versionName.length > 0)
32-
console.log(`Successfully override version code ${versionName}`)
32+
console.log(`Successfully override version name ${versionName}`)
3333
core.setOutput("result", `Done`);
3434
});
3535
});

0 commit comments

Comments
 (0)