Skip to content

Commit 6f343fb

Browse files
committed
Continue uploading releases
GitHub Rate limiting strikes again: HTTP 403: API rate limit exceeded for site ID installation. If you reach out to GitHub Support for help, please include the request ID B841:FE836:2987F1:2DFC18:67AF7CF8 and timestamp 2025-02-14 17:27:20 UTC. (https://uploads.github.com/repos/git-for-windows/pacman-repo/releases/200435033/assets?label=&name=mingw-w64-i686-openssl-1.1.1.j-1-any.pkg.tar.xz.sig) Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 968bfb2 commit 6f343fb

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/initialize-releases.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,16 @@ jobs:
3030
return stdout
3131
}
3232
33-
let startAfter = '2018-02-05T23:28:59.000Z'
33+
let startAt = '2021-02-16T19:49:16+00:00'
3434
const baseURL = 'https://wingit.blob.core.windows.net/'
3535
for (const release of list) {
3636
console.log(JSON.stringify(release, null, 2))
3737
38-
if (startAfter) {
39-
if ((new Date(release.date)).toISOString() === startAfter) {
40-
startAfter = null
41-
continue
38+
if (startAt) {
39+
if ((new Date(release.date)).toISOString() === startAt) {
40+
startAt = null
4241
} else {
43-
console.log(`skipping ${release.date}`)
42+
console.log(`skipping ${(new Date(release.date)).toISOString()}`)
4443
continue
4544
}
4645
}

0 commit comments

Comments
 (0)