From e10214a726885e5f51a9a1e157fa5e36e19eadc3 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 29 Mar 2021 12:11:53 +0200 Subject: ci: Fix asciidoc Unfortunately, GitHub won't let us clone asciidoc to ../asciidoc :( --- .github/workflows/bleeding.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to '.github') 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 -- cgit v1.2.3-54-g00ecf