From 9f50c330d12deb947bae2cc3cc81e5ef832312d3 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Wed, 9 Dec 2020 17:05:54 +0100 Subject: [PATCH] Fix yaml indentation --- .github/workflows/deploy_docs.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 3f3891d..1b53bf8 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -11,22 +11,22 @@ deploy: - uses: actions/checkout@master - name: Setup mdBook - uses: peaceiris/actions-mdbook@v1 - with: - mdbook-version: 'latest' + 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 + 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: npm ci && npm run build && touch book/.nojekyll - CNAME: slashdev.space \ No newline at end of file + uses: JamesIves/github-pages-deploy-action@master + env: + ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BRANCH: gh-pages + FOLDER: book + BUILD_SCRIPT: npm ci && npm run build && touch book/.nojekyll + CNAME: slashdev.space \ No newline at end of file