Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump hugo to latest version #702

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- main
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
Expand All @@ -20,13 +20,13 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.91.2'
hugo-version: '0.118.2'
extended: true

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- run: npm install

Expand Down
2 changes: 1 addition & 1 deletion content/documentation/database/migrations.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ development:

## Migraciones una vez desplegadas

{{< note "Esta sección es solo para usuarios de Buffalo.">}}
{{< note "Esta sección es solo para usuarios de Buffalo." />}}

Cuando cionstruyes tu aplicaión, las migraciones se almacenan dentro de tu binario. Tu binario tiene un comando `migrate` escondido que realiza las migraciones, tal como lo hace cuando usa `buffalo pop migrate`:

Expand Down
2 changes: 1 addition & 1 deletion content/documentation/database/migrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ development:

## Migrations Once Deployed

{{< note "This section is only for Buffalo users.">}}
{{< note "This section is only for Buffalo users." />}}


When you build your app, the migrations are stored inside your binary. Your binary has a hidden `migrate` command baked in that performs the migrations, just like it does when you use `buffalo pop migrate`:
Expand Down
2 changes: 1 addition & 1 deletion content/documentation/database/migrations.pt.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ development:

## Migrations Once Deployed

{{< note "This section is only for Buffalo users.">}}
{{< note "This section is only for Buffalo users." />}}


When you build your app, the migrations are stored inside your binary. Your binary has a hidden `migrate` command baked in that performs the migrations, just like it does when you use `buffalo pop migrate`:
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ publish = "public"
command = "hugo"

[build.environment]
HUGO_VERSION = "0.91.2"
NODE_VERSION = "16.9.0"
HUGO_VERSION = "0.118.2"
NODE_VERSION = "18.18.0"

[context.production.environment]
HUGO_ENV = "production"
Expand Down
Loading