Skip to content

Commit 781e824

Browse files
committed
chore: fix async debugging
1 parent 2ba4c47 commit 781e824

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tag.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
with:
2222
github-token: ${{ secrets.WEBLATE_CI_TOKEN }}
2323
script: |
24-
console.log(github.rest.users.getAuthenticated());
24+
const result = await github.rest.users.getAuthenticated();
25+
console.log(result);
2526
const now = new Date;
2627
const onejan = new Date(now.getFullYear(), 0, 1);
2728
/* This is not a ISO-8601 week number but works well for versioning */

0 commit comments

Comments
 (0)