Fix identation of deployment workflow file
This commit is contained in:
parent
f0add15de9
commit
3e26df864c
1 changed files with 13 additions and 13 deletions
26
.github/workflows/deployment.yml
vendored
26
.github/workflows/deployment.yml
vendored
|
@ -13,23 +13,23 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: "Setup NodeJS"
|
- name: "Setup NodeJS"
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '12.x'
|
||||||
|
|
||||||
- name: "Install NPM dependencies"
|
- name: "Install NPM dependencies"
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
||||||
- name: "Install gridsome CLI"
|
- name: "Install gridsome CLI"
|
||||||
run: "npm install --global @gridsome/cli"
|
run: "npm install --global @gridsome/cli"
|
||||||
|
|
||||||
- name: "Build"
|
- name: "Build"
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: Deploy
|
- name: "Deploy"
|
||||||
uses: peaceiris/actions-gh-pages@v3
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
with:
|
with:
|
||||||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||||
publish_dir: ./dist
|
publish_dir: ./dist
|
||||||
publish_branch: master
|
publish_branch: master
|
||||||
external_repository: Ryujinx/ryujinx.github.io
|
external_repository: Ryujinx/ryujinx.github.io
|
||||||
|
|
Loading…
Reference in a new issue