mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Merge pull request #761 from cjmayo/fixes
Fix make homepage and release workflow publish step
This commit is contained in:
commit
227cfed5a5
4 changed files with 9 additions and 5 deletions
6
.github/workflows/release-files.yml
vendored
6
.github/workflows/release-files.yml
vendored
|
|
@ -51,11 +51,15 @@ jobs:
|
|||
run: >
|
||||
sha256sum dist/*.{tar.gz,whl}
|
||||
|
||||
- name: Add distribution files to release
|
||||
- name: Add files to release
|
||||
run: >
|
||||
gh release upload ${{ github.ref_name }} dist/*
|
||||
env:
|
||||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
|
||||
- name: Remove Sigstore files
|
||||
run: >
|
||||
rm -f dist/*.{crt,sig,sigstore}
|
||||
|
||||
- name: Publish distribution files to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@release/v1
|
||||
|
|
|
|||
1
Makefile
1
Makefile
|
|
@ -21,7 +21,6 @@ upload:
|
|||
twine upload dist/LinkChecker*
|
||||
|
||||
homepage: linkcheck/_release.py
|
||||
make -C doc code
|
||||
make -C doc html
|
||||
|
||||
dist:
|
||||
|
|
|
|||
|
|
@ -141,7 +141,8 @@ URL checking results
|
|||
|
||||
.. option:: -v, --verbose
|
||||
|
||||
Log all checked URLs. Default is to log only errors and warnings.
|
||||
Log all checked URLs, overriding :option:`--no-warnings`.
|
||||
Default is to log only errors and warnings.
|
||||
|
||||
Progress updates
|
||||
""""""""""""""""
|
||||
|
|
|
|||
|
|
@ -181,8 +181,8 @@ URL checking results
|
|||
https://docs.python.org/library/codecs.html#standard-encodings.
|
||||
Command line option: :option:`--output`
|
||||
**verbose=**\ [**0**\ \|\ **1**]
|
||||
If set log all checked URLs once. Default is to log only errors and
|
||||
warnings.
|
||||
If set log all checked URLs once, overriding **warnings**.
|
||||
Default is to log only errors and warnings.
|
||||
Command line option: :option:`--verbose`
|
||||
**warnings=**\ [**0**\ \|\ **1**]
|
||||
If set log warnings. Default is to log warnings.
|
||||
|
|
|
|||
Loading…
Reference in a new issue