From 99e78f8ad97437a78510282c411fd52bf37ee5bb Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Wed, 9 Dec 2020 17:11:33 +0100 Subject: [PATCH] Fix indentation --- .github/workflows/deploy_docs.yml | 44 +++++++++++++++---------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 18265a0..f24e212 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -4,28 +4,28 @@ on: - master name: Deploy to Github Pages jobs: - deploy: - name: deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master + deploy: + name: deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master - - name: Setup mdBook - uses: peaceiris/actions-mdbook@v1 - with: - mdbook-version: "latest" + - name: Setup mdBook + uses: peaceiris/actions-mdbook@v1 + with: + mdbook-version: "latest" - - name: setup python - uses: actions/setup-python@v2 - with: - python-version: 3.8 - run: | - python build_docs.py + - name: setup python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + run: | + python build_docs.py - - name: Deploy - uses: JamesIves/github-pages-deploy-action@master - env: - ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages - FOLDER: book - BUILD_SCRIPT: touch book/.nojekyll + - name: Deploy + uses: JamesIves/github-pages-deploy-action@master + env: + ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BRANCH: gh-pages + FOLDER: book + BUILD_SCRIPT: touch book/.nojekyll