Skip to content

Commit 70f70d9

Browse files
committed
chore: add more logs
1 parent 4f19070 commit 70f70d9

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

dist/index.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export async function run() {
2727
try {
2828
core.info(`Processing release... (Attempt ${attempt + 1})`)
2929
await releaseTracker.process()
30+
break
3031
} catch (error: any) {
3132
core.error(error)
3233
}

src/release.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ export class ReleaseTracker {
108108
this.fetchAllTags()
109109
])
110110

111+
console.log('stampedTags', stampedTags)
112+
console.log('githubTags', githubTags)
113+
111114
const filterredTags = R.difference(stampedTags, githubTags)
112115

113116
if (filterredTags.length <= 0) {

0 commit comments

Comments
 (0)