mirror of
https://github.com/daylinmorgan/yartsu.git
synced 2024-12-22 04:20:44 -06:00
ci: update docs job
This commit is contained in:
parent
92df523c62
commit
efa3e1f41c
1 changed files with 1 additions and 31 deletions
32
.github/workflows/docs.yml
vendored
32
.github/workflows/docs.yml
vendored
|
@ -10,41 +10,11 @@ jobs:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
# TODO: implement this with pdm?
|
|
||||||
#
|
|
||||||
# - name: Setup Python
|
|
||||||
# uses: actions/setup-python@v3
|
|
||||||
# with:
|
|
||||||
# python-version: "3.9"
|
|
||||||
#
|
|
||||||
# - name: Upgrade pip
|
|
||||||
# run: |
|
|
||||||
# # install pip=>20.1 to use "pip cache dir"
|
|
||||||
# python3 -m pip install --upgrade pip
|
|
||||||
#
|
|
||||||
# - name: Get pip cache dir
|
|
||||||
# id: pip-cache
|
|
||||||
# run: echo "::set-output name=dir::$(pip cache dir)"
|
|
||||||
#
|
|
||||||
# - name: Cache dependencies
|
|
||||||
# uses: actions/cache@v2
|
|
||||||
# with:
|
|
||||||
# path: ${{ steps.pip-cache.outputs.dir }}
|
|
||||||
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-docs.txt') }}
|
|
||||||
# restore-keys: |
|
|
||||||
# ${{ runner.os }}-pip-
|
|
||||||
#
|
|
||||||
# - name: Install dependencies
|
|
||||||
# run: python3 -m pip install -r ./requirements-docs.txt
|
|
||||||
#
|
|
||||||
|
|
||||||
- uses: pdm-project/setup-pdm@v3
|
- uses: pdm-project/setup-pdm@v3
|
||||||
name: Setup PDM
|
name: Setup PDM
|
||||||
|
|
||||||
|
@ -52,7 +22,7 @@ jobs:
|
||||||
run: pdm install # Then you can use pdm in the following steps.
|
run: pdm install # Then you can use pdm in the following steps.
|
||||||
|
|
||||||
- name: Build Docs
|
- name: Build Docs
|
||||||
- run: make docs
|
run: make docs
|
||||||
|
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
uses: peaceiris/actions-gh-pages@v3
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
|
Loading…
Reference in a new issue