mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-10-31 03:20:40 +00:00
docs: add github action to push docs (#444)
This commit is contained in:
parent
807c976da3
commit
66b17cc315
22
.github/workflows/ci.yaml
vendored
22
.github/workflows/ci.yaml
vendored
@ -116,3 +116,25 @@ jobs:
|
||||
run: |
|
||||
imagine fruit --steps 10 --size 496 --seed 1
|
||||
|
||||
|
||||
publish-docs:
|
||||
if: github.ref == 'refs/heads/master'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Configure Git Credentials
|
||||
run: |
|
||||
git config user.name github-actions[bot]
|
||||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
key: mkdocs-material-${{ env.cache_id }}
|
||||
path: .cache
|
||||
restore-keys: |
|
||||
mkdocs-material-
|
||||
- run: python -m pip install -r requirements-dev.in . --upgrade
|
||||
- run: mkdocs gh-deploy --force
|
Loading…
Reference in New Issue
Block a user