Skip to content

Commit 48dbc02

Browse files
committed
initialize-releases: continue with the next releases
The first release was successfully uploaded to https://github.com/git-for-windows/pacman-repo/releases/tag/2018-02-05T23-28-59.000Z Now that things seem to work, it's time to continue with all other releases. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 56f8d30 commit 48dbc02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/initialize-releases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ jobs:
3030
return stdout
3131
}
3232
33-
let startAfter = 'Mon Feb 05 2018 23:28:59 GMT+0000 (Coordinated Universal Time)'
33+
let startAfter = '2018-02-05T23:28:59.000Z'
3434
const baseURL = 'https://wingit.blob.core.windows.net/'
3535
for (const release of list) {
3636
if (startAfter) {
37-
if (`${release.date}` === startAfter) {
37+
if ((new Date(l[0].date)).toISOString() === startAfter) {
3838
startAfter = null
39+
continue
3940
} else {
4041
console.log(`skipping ${release.date}`)
4142
continue
@@ -63,6 +64,5 @@ jobs:
6364
(new Date(release.date)).toString(),
6465
(new Date(release.date)).toISOString().replace(/:/g, '-'),
6566
...targets])
66-
break
6767
}
6868

0 commit comments

Comments
 (0)