mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Merge pull request #581 from cjmayo/version
Fix LinkChecker version shown on github.io
This commit is contained in:
commit
b6d97be46c
1 changed files with 7 additions and 1 deletions
8
.github/workflows/publish-pages.yml
vendored
8
.github/workflows/publish-pages.yml
vendored
|
|
@ -8,9 +8,15 @@ jobs:
|
|||
run:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
# Needed for setuptools_scm to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Install Ubuntu packages
|
||||
run: sudo apt install graphviz
|
||||
|
|
@ -31,7 +37,7 @@ jobs:
|
|||
make -C doc html
|
||||
|
||||
- name: Publish
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./doc/html
|
||||
|
|
|
|||
Loading…
Reference in a new issue