Debugging!

This commit is contained in:
Annika Merris 2024-02-03 19:26:11 -05:00
parent 00b2dcc4f2
commit 595a90e007

View file

@ -4,6 +4,8 @@ const exec = require('@actions/exec');
async function run() {
try {
const shell = core.getInput('shell_command') || "/bin/bash -c";
console.log(shell);
console.log(core.getInput('shell_command'));
const image = core.getInput('image');
const path = core.getInput('path');
const destination = core.getInput('destination') || `.extracted-${Date.now()}`;