hugo-theme-bootstrap5-blog/.drone.yml

35 lines
406 B
YAML
Raw Permalink Normal View History

kind: pipeline
type: docker
2020-12-10 11:32:20 +01:00
name: node10
steps:
- name: build
image: node:10-alpine
commands:
- npm install
- npm run dist
2020-12-10 11:34:56 +01:00
---
2020-12-09 14:54:21 +01:00
kind: pipeline
type: docker
2020-12-10 11:32:20 +01:00
name: node12
2020-12-09 14:54:21 +01:00
steps:
2020-12-10 09:33:29 +01:00
- name: build
image: node:12-alpine
2020-12-09 14:54:21 +01:00
commands:
2020-12-10 09:33:29 +01:00
- npm install
- npm run dist
2020-12-10 11:34:56 +01:00
---
kind: pipeline
type: docker
2020-12-10 11:32:20 +01:00
name: node14
steps:
- name: build
image: node:14-alpine
commands:
- npm install
- npm run dist