test_26
Push to main / Reset-Version-Tag (push) Successful in 6s

This commit is contained in:
2026-05-18 14:02:09 -06:00
parent 4ade57edc2
commit cfa357788c
+2 -2
View File
@@ -3,7 +3,7 @@ import { readFileSync, mkdirSync, writeFileSync, readdirSync } from "fs";
const libName = process.env.PWD.split("/").slice(-1)[0];
const version = readFileSync("version", { encoding: "utf8" });
const tarName = `${libName}_${version}.tgz`;
const tarName = `${libName}-${version}.tgz`;
const repoBaseUrl = `${process.env.INPUT_REPO_URL}/${libName}/${version}`;
const packageJsonUrls = [];
@@ -54,7 +54,7 @@ writeFileSync(
);
// create tar file
execSync(`tar czf ${tarName} ${libName}`, {
execSync(`tar cf ${tarName} ${libName}`, {
encoding: "utf8",
});