kopia lustrzana https://github.com/linuxserver/docker-documentation
ci: 💚 use sparse checkout and cache properly
Signed-off-by: Eric Nemchik <eric@nemchik.com>pull/188/head
rodzic
91ac4431d9
commit
54afff55d0
|
@ -12,16 +12,31 @@ jobs:
|
||||||
name: Build docs
|
name: Build docs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.1
|
- name: Checkout repository
|
||||||
- uses: actions/setup-python@v5.0.0
|
uses: actions/checkout@v4.1.1
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
sparse-checkout: |
|
||||||
|
docs
|
||||||
|
- name: Setup python
|
||||||
|
uses: actions/setup-python@v5.0.0
|
||||||
with:
|
with:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
- uses: actions/cache@v3.3.2
|
- name: Get pip cache directory
|
||||||
|
id: pip-cache
|
||||||
|
run: |
|
||||||
|
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
|
||||||
|
- name: Cache dependencies
|
||||||
|
uses: actions/cache@v4.0.0
|
||||||
with:
|
with:
|
||||||
key: ${{ github.ref }}
|
path: ${{ steps.pip-cache.outputs.dir }}
|
||||||
path: .cache
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||||
- run: pip install -r docs/requirements.txt
|
restore-keys: |
|
||||||
- run: mkdocs build
|
${{ runner.os }}-pip-
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install -r docs/requirements.txt
|
||||||
|
- name: Build documentation
|
||||||
|
run: mkdocs build
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref)
|
if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref)
|
||||||
|
@ -29,15 +44,28 @@ jobs:
|
||||||
name: Deploy docs
|
name: Deploy docs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.1
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4.1.1
|
||||||
with:
|
with:
|
||||||
fetch-depth: '0'
|
fetch-depth: 0
|
||||||
- uses: actions/setup-python@v5.0.0
|
sparse-checkout: |
|
||||||
|
docs
|
||||||
|
- name: Setup python
|
||||||
|
uses: actions/setup-python@v5.0.0
|
||||||
with:
|
with:
|
||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
- uses: actions/cache@v3.3.2
|
- name: Get pip cache directory
|
||||||
|
id: pip-cache
|
||||||
|
run: |
|
||||||
|
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
|
||||||
|
- name: Cache dependencies
|
||||||
|
uses: actions/cache@v4.0.0
|
||||||
with:
|
with:
|
||||||
key: ${{ github.ref }}
|
path: ${{ steps.pip-cache.outputs.dir }}
|
||||||
path: .cache
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
||||||
- run: pip install -r docs/requirements.txt
|
restore-keys: |
|
||||||
- run: mkdocs gh-deploy --force
|
${{ runner.os }}-pip-
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install -r docs/requirements.txt
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
run: mkdocs gh-deploy --force
|
||||||
|
|
Ładowanie…
Reference in New Issue