mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-13 19:01:03 +00:00
pip only uses the wheel target. Save building the metadata twice as a result in GitHub workflows and update documentation.md.
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: Create a branch with updated man pages and application translations
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
repository: linkchecker/linkchecker
|
|
ref: master
|
|
# Needed for hatch-vcs to extract LinkChecker version from tag
|
|
# https://github.com/actions/checkout/issues/249
|
|
fetch-depth: 0
|
|
|
|
- name: Install Ubuntu packages
|
|
run: sudo apt install gettext git
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
|
|
- name: Install Python packages
|
|
run: >
|
|
pip3 install dnspython beautifulsoup4 requests \
|
|
hatchling hatch-vcs sphinx sphinx_epytext \
|
|
sphinx_rtd_theme sphinx-sitemap sphinx-intl
|
|
|
|
- name: Prepare git environment
|
|
run: |
|
|
git config user.email "linkchecker@linkchecker.github.io"
|
|
git config user.name "LinkChecker"
|
|
git checkout -b man-updates
|
|
git remote add local ${{ github.server_url }}/${{ github.repository }}
|
|
|
|
- name: Build man pages
|
|
run: |
|
|
python3 -m hatchling build -t sdist --hooks-only
|
|
make -C doc locale
|
|
git commit -a -m "Update doc translation catalogs"
|
|
make -C doc man
|
|
git commit -a -m "Update man pages"
|
|
|
|
- name: Build application translations catalogs
|
|
run: |
|
|
rm -f po/linkchecker.pot
|
|
make -C po
|
|
git commit -a -m "Update application translation catalogs"
|
|
|
|
- name: Push changes
|
|
run: >
|
|
git push --set-upstream local man-updates
|