diff options
author | Florian Bruhin <me@the-compiler.org> | 2022-12-13 08:38:00 +0100 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2022-12-13 08:38:23 +0100 |
commit | 549aec310089ace34d039b132a8190cdd05ebc84 (patch) | |
tree | 67c330c67996cf1aa184d3a4557b44f835463ee5 /.github | |
parent | 3c2d114e670b221ca0673e51005dc05148066837 (diff) | |
download | qutebrowser-549aec310089ace34d039b132a8190cdd05ebc84.tar.gz qutebrowser-549aec310089ace34d039b132a8190cdd05ebc84.zip |
ci: Adjust for asciidoc changes
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/nightly.yml | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 5aaafb666..a3e78977e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -75,25 +75,16 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.10" - - name: Get asciidoc - uses: actions/checkout@v3 - with: - repository: asciidoc-py/asciidoc-py - ref: '9.x' - path: asciidoc - persist-credentials: false - - 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 + python -m pip install -U -r misc/requirements/requirements-tox.txt -r misc/requirements/requirements-docs.txt - name: Patch qutebrowser for debugging if: "contains(matrix.args, '--debug')" run: | sed -i '' '/.-d., .--debug.,/s/$/ default=True,/' qutebrowser/qutebrowser.py - name: Run tox - run: "tox -e ${{ matrix.toxenv }} -- --asciidoc ../asciidoc/asciidoc.py --gh-token ${{ secrets.GITHUB_TOKEN }} ${{ matrix.args }}" + run: "tox -e ${{ matrix.toxenv }} -- --gh-token ${{ secrets.GITHUB_TOKEN }} ${{ matrix.args }}" - name: Gather info id: info run: | |