19 lines
280 B
YAML
19 lines
280 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: Build and deploy
|
|
|
|
steps:
|
|
- name: Build Presentation
|
|
commands:
|
|
- cd presentation
|
|
- marp presentation.md -o index.html
|
|
- cp * /home/andr3/services/notes/presentation
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
node:
|
|
lights: builder
|
|
|