mirror of
https://github.com/Ryujinx/Ryujinx-Website.git
synced 2025-01-10 01:27:18 -03:00
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
|
||||
|
||||
- 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
|
||||
|
|
Loading…
Reference in a new issue