v0.0.58: try this

This commit is contained in:
Edwin Sirko
2024-01-24 10:36:34 -05:00
committed by ddivad195
parent 475c9db7d7
commit 5d36b1908c
4 changed files with 8 additions and 13 deletions
Generated Vendored
+2 -2
View File
@@ -74742,9 +74742,9 @@ const semver_1 = __importDefault(__nccwpck_require__(11383));
async function run() {
const tmpDirs = [];
try {
const whoToGreet = core.getInput('who-to-greet', { required: true });
const whoToGreet = process.env.who_to_greet;
core.info(`Hello, ${whoToGreet}!`);
const token2 = core.getInput('token', { required: true });
const token2 = process.env.TOKEN;
core.info(`Hello, ${token2}!`);
// Parse and validate Actions execution context, including the repository name, release name and event type
const repository = process.env.GITHUB_REPOSITORY || '';