Skip to content
This repository was archived by the owner on Mar 26, 2022. It is now read-only.
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG NGINX_IMAGE_TAG=stable-alpine-for-hugo
FROM debian:10-slim AS builder

ARG HUGO_VERSION=0.76.5
ARG NODE_VERSION=10.15.0
ARG NODE_VERSION=12.18.3

RUN apt-get update && apt-get install -y \
build-essential \
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pipeline {

parameters {
string(name: 'hugo_version', defaultValue: '0.76.5', description: 'The Hugo version that will be used to build the website. Must match versions speficied on https://github.com/gohugoio/hugo/releases.')
string(name: 'node_version', defaultValue: '10.15.3', description: 'The Node.js version that will be used to build the website. Must match versions specified on https://nodejs.org/en/download/releases/. It is adivsed to stick to LTS versions.')
string(name: 'node_version', defaultValue: '12.18.3', description: 'The Node.js version that will be used to build the website. Must match versions specified on https://nodejs.org/en/download/releases/. It is adivsed to stick to LTS versions.')
}

environment {
Expand Down
2 changes: 2 additions & 0 deletions data/members.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ types:
title: Chevron
link: https://www.chevron.com/
img_width: 120
img_height: 116
-
image: /images/sparkplug/members/cirrus-link-solutions.png
title: Cirrus Link
Expand All @@ -21,6 +22,7 @@ types:
title: HiveMQ
link: https://www.hivemq.com/
img_width: 200
img_height: 47
-
image: /images/sparkplug/members/inductive-automation-logo.png
title: Inductive Automation
Expand Down
2 changes: 1 addition & 1 deletion layouts/shortcodes/home-founding-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<h2>Founding Members</h2>
<ul class="list-inline margin-bottom-0">
{{ range $data.items }}
<li><a href="{{ .link }}"><img class="founder-logo" width="{{ .img_width }}" alt="{{ .title }}" src="{{ .image }}"></a></li>
<li><a href="{{ .link }}"><img class="founder-logo" {{ if isset . "img_height" }} height="{{ .img_height }}" {{ end }} {{ if isset . "img_width" }} width="{{ .img_width }}" {{ end }} alt="{{ .title }}" src="{{ .image }}"></a></li>
{{ end }}
</ul>
</div>
Expand Down
3 changes: 3 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
publish = "public"
command = "npm run build_netlify && hugo --gc --minify -b https://eclipsefdn-sparkplug.netlify.com"

[build.environment]
NODE_VERSION = "12.18.3"

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