Skip to content

Commit eae10df

Browse files
committed
dryrun to show rendered query
1 parent 25d669f commit eae10df

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/utils.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ async function showStackQLQuery(core) {
4242
core.setFailed("No Dryrun Output from stackql command");
4343
}
4444

45-
core.info(`🚀 stackql dryrun command:\n${dryRunCommand}`);
46-
core.info(`🚀 stackql query:\n${dryRunResult}`);
45+
core.info(`\n🚀 rendered stackql query:\n${dryRunResult}`);
4746

4847
} catch (e) {
4948
core.setFailed(e);
@@ -101,7 +100,6 @@ async function getStackqlCommand(core) {
101100
const stackqlDryRunQuery = `stackql ${dryRunArgs.join(" ")}`;
102101
core.exportVariable('STACKQL_COMMAND', stackqlQuery);
103102
core.exportVariable('STACKQL_DRYRUN_COMMAND', stackqlDryRunQuery);
104-
core.info(`🚀 stackql command:\n${stackqlQuery}`);
105103
} catch (error) {
106104
core.error(error);
107105
core.setFailed("Error exporting stackql command");

0 commit comments

Comments
 (0)