mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-16 21:40:24 +00:00
actions for deployment of docs
This commit is contained in:
parent
f65e940d5e
commit
353ff280c3
1 changed files with 40 additions and 0 deletions
40
.github/workflows/deploy_docs.yml
vendored
Normal file
40
.github/workflows/deploy_docs.yml
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
name: Deploy documentations to GitHub Pages
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [ created ]
|
||||
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.2
|
||||
run: |
|
||||
python dev.py --with-docs
|
||||
mkdocs build
|
||||
|
||||
- name: Commit documentation changes
|
||||
run: |
|
||||
git clone https://github.com/publichealthengland/coronavirus-dashboard-api-python-sdk.git --branch gh-pages --single-branch gh-pages
|
||||
cp -r docs/* gh-pages/
|
||||
cd gh-pages
|
||||
VERSION=$(python setup.py -V)
|
||||
echo ${VERSION} >> version
|
||||
> .nojekyll
|
||||
git config --local user.email "action@github.com"
|
||||
git config --local user.name "GitHub Action"
|
||||
git add .
|
||||
git commit -m "Update documentations" -a || true
|
||||
echo "Documentations for v${VERSION} has been deployed."
|
||||
# The above command will fail if no changes were present, so we ignore
|
||||
# the return code.
|
||||
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
branch: gh-pages
|
||||
directory: gh-pages
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
Reference in a new issue