From 3e26df864c450febc09aafd823ed5214479c2cc1 Mon Sep 17 00:00:00 2001 From: Thog Date: Fri, 7 Feb 2020 17:13:03 +0100 Subject: [PATCH] Fix identation of deployment workflow file --- .github/workflows/deployment.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index ade7908..6daa3ca 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -13,23 +13,23 @@ jobs: uses: actions/checkout@v2 - name: "Setup NodeJS" - uses: actions/setup-node@v1 - with: - node-version: '12.x' + uses: actions/setup-node@v1 + with: + node-version: '12.x' - name: "Install NPM dependencies" - run: npm install + run: npm install - name: "Install gridsome CLI" - run: "npm install --global @gridsome/cli" + run: "npm install --global @gridsome/cli" - name: "Build" - run: npm run build + run: npm run build - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} - publish_dir: ./dist - publish_branch: master - external_repository: Ryujinx/ryujinx.github.io + - name: "Deploy" + uses: peaceiris/actions-gh-pages@v3 + with: + deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + publish_dir: ./dist + publish_branch: master + external_repository: Ryujinx/ryujinx.github.io