Merge pull request #19701 from janisozaur/investigate-19692

Investigate missing windows uploads #19692
This commit is contained in:
Michał Janiszewski 2023-03-22 23:45:53 +01:00 committed by GitHub
commit 826fa4769c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -33,12 +33,11 @@ if [ -z "$OPENRCT2_ORG_TOKEN" ]; then
echo -e "\033[0;31mOPENRCT2_ORG_TOKEN not set"
exit 1
fi
curl -m 300 --connect-timeout 5 -o - \
curl --include -m 300 --connect-timeout 5 -o - \
--form "key=$OPENRCT2_ORG_TOKEN" \
--form "fileName=$filename" \
--form "version=$version" \
--form "gitHash=$sha1" \
--form "gitBranch=$branch" \
--form "flavourId=$flavourid" \
--form "file=@$path" \
"https://openrct2.org/altapi/?command=push-build"