Use http1.1
This commit is contained in:
parent
1bf07baaa9
commit
cecba48c7b
1 changed files with 3 additions and 1 deletions
|
@ -47,5 +47,7 @@ jobs:
|
||||||
git tag -a $tag -m $tag
|
git tag -a $tag -m $tag
|
||||||
done < missing_tags
|
done < missing_tags
|
||||||
- name: Push to destination
|
- 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue