Skip to content

Commit

Permalink
docs: update node version in github-pages workflow (#1339)
Browse files Browse the repository at this point in the history
  • Loading branch information
vedmaque authored Mar 14, 2021
1 parent 1563ee8 commit 0f634fe
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions content/en/guides/deployment/github-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Finally, create a `.travis.yml` configuration file in the root of your repositor
```yaml
language: node_js
node_js:
- '8'
- '12'
cache:
directories:
Expand Down Expand Up @@ -220,8 +220,8 @@ Next, in the root of your repository, create an `appveyor.yml` configuration fil

```yaml
environment:
# Nuxt requires node v8 minimum
nodejs_version: '8'
# Nuxt requires node v12 minimum
nodejs_version: '12'
# Encrypt sensitive data (https://ci.appveyor.com/tools/encrypt)
github_access_token:
secure: ENCRYPTED_GITHUB_ACCESS_TOKEN
Expand Down
6 changes: 3 additions & 3 deletions content/fr/faq/github-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Finally, create a `.travis.yml` configuration file in the root of your repositor
```yaml
language: node_js
node_js:
- '8'
- '12'

cache:
directories:
Expand Down Expand Up @@ -189,8 +189,8 @@ Next, in the root of your repository, create an `appveyor.yml` configuration fil

```yaml
environment:
# Nuxt requires node v8 minimum
nodejs_version: '8'
# Nuxt requires node v12 minimum
nodejs_version: '12'
# Encrypt sensitive data (https://ci.appveyor.com/tools/encrypt)
github_access_token:
secure: ENCRYPTED_GITHUB_ACCESS_TOKEN
Expand Down
6 changes: 3 additions & 3 deletions content/ja/faq/github-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ npm run deploy
```yaml
language: node_js
node_js:
- '8'
- '12'

cache:
directories:
Expand Down Expand Up @@ -189,8 +189,8 @@ git push origin

```yaml
environment:
# Nuxt には最低でも node v8 が必要
nodejs_version: '8'
# Nuxt には最低でも node v12 が必要
nodejs_version: '12'
# 暗号化したセンシティブなデータ (https://ci.appveyor.com/tools/encrypt)
github_access_token:
secure: ENCRYPTED_GITHUB_ACCESS_TOKEN
Expand Down
6 changes: 3 additions & 3 deletions content/zh/faq/github-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ npm run deploy
```yaml
language: node_js
node_js:
- '8'
- '12'

cache:
directories:
Expand Down Expand Up @@ -193,8 +193,8 @@ git push origin

```yaml
environment:
# Nuxt requires node v8 minimum
nodejs_version: '8'
# Nuxt requires node v12 minimum
nodejs_version: '12'
# Encrypt sensitive data (https://ci.appveyor.com/tools/encrypt)
github_access_token:
secure: ENCRYPTED_GITHUB_ACCESS_TOKEN
Expand Down

0 comments on commit 0f634fe

Please sign in to comment.