summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-29 12:11:53 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-03-29 23:42:14 +0200
commite10214a726885e5f51a9a1e157fa5e36e19eadc3 (patch)
treed2bb7d0185e9b8059b7e6a455f7d05ea90535f25 /.github
parentf511f11ecdc2708c0333ec86b52c790c50f50e23 (diff)
downloadqutebrowser-e10214a726885e5f51a9a1e157fa5e36e19eadc3.tar.gz
qutebrowser-e10214a726885e5f51a9a1e157fa5e36e19eadc3.zip
ci: Fix asciidoc
Unfortunately, GitHub won't let us clone asciidoc to ../asciidoc :(
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/bleeding.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml
index e11844775..6d31d9513 100644
--- a/.github/workflows/bleeding.yml
+++ b/.github/workflows/bleeding.yml
@@ -46,12 +46,20 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.9
+ - name: Get asciidoc
+ uses: actions/checkout@v2
+ with:
+ repository: asciidoc-py/asciidoc-py
+ ref: '9.x'
+ path: asciidoc
+ - name: Move asciidoc out of the repo
+ run: mv asciidoc ..
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U -r misc/requirements/requirements-tox.txt
- name: Run tox
- run: tox -e build-release
+ run: tox -e build-release -- --asciidoc ../asciidoc/asciidoc.py
irc:
timeout-minutes: 2