5-72

5-72 helps novice musicians master sound engineering by analyzing the FX chains of world-famous artists
Log | Files | Refs

commit 18acdd1a52305acf6e6f07af06a63a92d570a9d4
parent 8b67f10163e0dd88864138d2b1a1ec274076be79
Author: ismaildalgatov <encryptedtears@gmail.com>
Date:   Thu, 13 May 2021 16:19:56 +0300

Create mkdocs-deploy.yml

Diffstat:
A.github/workflows/mkdocs-deploy.yml | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/mkdocs-deploy.yml b/.github/workflows/mkdocs-deploy.yml @@ -0,0 +1,22 @@ +name: 5-72 site CI +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2.3.1 + - name: Setup python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Build docs + run: | + pip install -r requirements.txt + pip install wheel + pip install mkdocs-minify-plugin + mkdocs build + mkdocs gh-deploy --force +\ No newline at end of file