Use http1.1

This commit is contained in:
Antoine Martin 2024-10-10 18:59:11 -04:00
parent 1bf07baaa9
commit cecba48c7b
Signed by: forge
GPG key ID: D62A472A4AA7D541

View file

@ -47,5 +47,7 @@ jobs:
git tag -a $tag -m $tag
done < missing_tags
- name: Push to destination
run: git push --force origin refs/tags/*:refs/tags/* --tags
run: | # use http 1.1 due to http 2 stream being buggy
git config --global http.version HTTP/1.1
git push --force origin refs/tags/*:refs/tags/* --tags