chore: Update pdm.lock (#365) #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation(Deploy) | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
# See: https://github.com/pdm-project/pdm/issues/1879 | |
env: | |
PDM_DEPS: 'urllib3<2' | |
jobs: | |
documentation: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: pdm-project/setup-pdm@v3 | |
name: Setup PDM | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: pdm install -G doc | |
- name: Set up build cache | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
key: mkdocs-material-${{ github.ref }} | |
path: .cache | |
restore-keys: | | |
mkdocs-material- | |
# derived from: | |
# https://github.com/RemoteCloud/public-documentation/blob/dev/.github/workflows/build_docs.yml | |
- name: Configure Git user | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
- name: Depoly documentation | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }} | |
run: | | |
pdm run mike deploy --force --push --update-aliases dev -F docs/mkdocs.yml |