ci: Try to avoid upload load

I suspect we get issues because 6 jobs try to upload at the same time
This commit is contained in:
Florian Bruhin 2021-05-14 14:34:56 +02:00
parent ac12fcd714
commit 493d7470c4
1 changed files with 3 additions and 0 deletions

View File

@ -78,6 +78,9 @@ jobs:
sed -i '' '/.-d., .--debug.,/s/$/ default=True,/' qutebrowser/qutebrowser.py
- name: Run tox
run: "tox -e build-release -- --asciidoc ../asciidoc/asciidoc.py --gh-token ${{ secrets.GITHUB_TOKEN }} ${{ matrix.args }}"
- name: Wait 90s to avoid upload errors
if: "contains(matrix.args, '--32bit')"
run: "sleep 90"
- name: Upload artifacts
uses: actions/upload-artifact@v2
with: