From 4a1ee8a689994953112dec57dc3a7bbc91d5b8e5 Mon Sep 17 00:00:00 2001 From: Shyam D Date: Thu, 3 Jun 2021 15:23:58 -0700 Subject: [PATCH] fix indent error --- .github/workflows/release.yml | 80 +++++++++++++++++------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6db515757..76b5f3f8cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,43 +40,43 @@ jobs: needs: - deploy - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-python@v2.2.2 - with: - python-version: 3.7 - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install emmet-core emmet-builders - pip install -r requirements-docs.txt - - - name: Generate changelog - uses: charmixer/auto-changelog-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - exclude_labels: dependencies - - - name: Commit files - run: | - git config --local user.email "feedback@materialsproject.org" - git config --local user.name "materialsproject" - mv CHANGELOG.md docs/ - git add docs/CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' - - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - - - name: Build - run: mkdocs build - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3.8.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./site + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-python@v2.2.2 + with: + python-version: 3.7 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install emmet-core emmet-builders + pip install -r requirements-docs.txt + + - name: Generate changelog + uses: charmixer/auto-changelog-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + exclude_labels: dependencies + + - name: Commit files + run: | + git config --local user.email "feedback@materialsproject.org" + git config --local user.name "materialsproject" + mv CHANGELOG.md docs/ + git add docs/CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' + + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + + - name: Build + run: mkdocs build + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3.8.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./site