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:
parent
ac12fcd714
commit
493d7470c4
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue