diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index a2a0192..81974e9 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -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 \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/.github/workflows/documetation-deployment.yml b/.github/workflows/documetation-deployment.yml new file mode 100644 index 0000000..6558575 --- /dev/null +++ b/.github/workflows/documetation-deployment.yml @@ -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 \ No newline at end of file