docker-documentation/.github/workflows/deploy.yml

72 wiersze
2.0 KiB
YAML
Czysty Zwykły widok Historia

2022-11-28 00:36:48 +00:00
name: Build mkdocs and deploy to GitHub Pages
2022-11-28 00:36:48 +00:00
on: [push, pull_request]
2023-11-20 09:36:18 +00:00
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
2022-11-28 00:36:48 +00:00
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.4
with:
fetch-depth: 0
sparse-checkout: |
docs
- name: Setup python
uses: actions/setup-python@v5.1.0
2022-11-28 00:36:48 +00:00
with:
python-version: 3.x
- name: Get pip cache directory
id: pip-cache
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4.0.2
2022-11-28 00:36:48 +00:00
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build documentation
run: mkdocs build
2022-11-28 00:36:48 +00:00
deploy:
if: github.event_name == 'push' && contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref)
2022-11-28 00:36:48 +00:00
needs: build
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.4
2022-11-28 00:36:48 +00:00
with:
fetch-depth: 0
sparse-checkout: |
docs
- name: Setup python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.x
- name: Get pip cache directory
id: pip-cache
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4.0.2
2022-11-28 00:36:48 +00:00
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force