Update index

Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar Bakr 2023-10-04 13:53:53 +03:00
parent bac3ca6765
commit 97d46bb6ad
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28

View File

@ -21,7 +21,6 @@ async function run() {
const labelInput = core.getInput('label'); const labelInput = core.getInput('label');
const filePath = getProjectInfoFilePath(filePathInput); const filePath = getProjectInfoFilePath(filePathInput);
const file = await getFile(filePath);
console.log(`Label: ${labelInput}`) console.log(`Label: ${labelInput}`)
@ -53,7 +52,7 @@ async function run() {
// join the parts back together // join the parts back together
const newVersion = versionParts.join('.'); const newVersion = versionParts.join('.');
file = updateProjectVersion(filePath, newVersion); const file = updateProjectVersion(filePath, newVersion);
console.log(`Old version: ${version}. New version: ${newVersion}`) console.log(`Old version: ${version}. New version: ${newVersion}`)