Skip to content

Commit

Permalink
Docs deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
romanov committed Sep 7, 2022
1 parent 2ad4816 commit 82d8d05
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,4 @@ jobs:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Building docs
run: mkdocs gh-deploy --force
labels: ${{ steps.meta.outputs.labels }}
17 changes: 17 additions & 0 deletions .github/workflows/documetation-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Documentation deployment

on:
push:
branches:
- master
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.10
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force

0 comments on commit 82d8d05

Please sign in to comment.