Delete docs.yml

This commit is contained in:
Bastian Schroll 2019-10-26 15:46:23 +02:00 committed by GitHub
parent 37f6a5f3be
commit facd7be644
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,30 +0,0 @@
name: BW Docs
on:
push:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs
apt install doxygen
- name: Build doxygen
run: doxygen docu/doxygen.ini
- name: Build mkDocs
run: mkdocs build -f docu/mkdocs.yml
- name: Deploy docs
run: echo 'tbd...'