1 parent 5078b8b commit 85c5945Copy full SHA for 85c5945
1 file changed
.github/workflows/TestDraftRelease.yml
@@ -35,6 +35,10 @@ jobs:
35
}
36
37
const firstDraft = draftReleases[0];
38
+ console.log('Draft release details:', JSON.stringify(firstDraft, null, 2));
39
+ console.log('Tag name:', firstDraft.tag_name);
40
+ console.log('Tag name type:', typeof firstDraft.tag_name);
41
+
42
core.setOutput('tag', firstDraft.tag_name);
43
core.setOutput('release_id', firstDraft.id.toString());
44
return firstDraft;
0 commit comments