workflow 0.3.0

Execute complex workflows using simple definition files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
id: hello-world
name: Hello world
author: Aloïs Micard <alois@micard.lu>
description: Download a file and print his content
steps:
  - name: Download the file
    uses: std-download
    with:
      url: https://perdu.com
      file: perdu.txt
  - name: Print the file content
    exec: cat perdu.txt
  - name: Delete the file
    exec: rm perdu.txt