We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 537c23a commit cf52392Copy full SHA for cf52392
index.js
@@ -168,6 +168,7 @@ async function run() {
168
const matches = taskDefRevisionArn.match(regex);
169
core.info(`taskDefRevisionArn was ${taskDefRevisionArn}`);
170
core.info(`matches is ${JSON.stringify(matches)}`);
171
+ core.info(`matches[1] is ${matches[1]}`);
172
core.setOutput('task-definition-family-and-revision', matches[1])
173
174
const clusterName = cluster ? cluster : 'default';
0 commit comments