We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b266c commit ac3a028Copy full SHA for ac3a028
.github/workflows/initialize-releases.yml
@@ -38,13 +38,14 @@ jobs:
38
let startAt = '2025-02-14T08:31:04.000Z'
39
const baseURL = 'https://wingit.blob.core.windows.net/'
40
for (const release of list) {
41
- console.log(JSON.stringify(release, null, 2))
+ const date = (new Date(release.date)).toISOString()
42
+ console.log(`::group::${date}\n${JSON.stringify(release, null, 2)}\n::endgroup::`)
43
44
if (startAt) {
- if ((new Date(release.date)).toISOString() === startAt) {
45
+ if (date === startAt) {
46
startAt = null
47
} else {
- console.log(`skipping ${(new Date(release.date)).toISOString()}`)
48
+ console.log(`skipping ${date}`)
49
continue
50
}
51
0 commit comments