From 6beba62d56ab31927ef1ad7671ab52800ba51103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Wed, 10 Dec 2025 21:45:45 +0100 Subject: =?UTF-8?q?Accept=20literal=20text=20block=20for=20the=20=E2=80=98?= =?UTF-8?q?shell=E2=80=99=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changelog: Accept literal text block for the `shell` section --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 0829ed6..ceb8255 100644 --- a/README.md +++ b/README.md @@ -17,22 +17,23 @@ Example: ``` job build: - shell: - - make + shell: | + ./configure + make artifact bin: path: build/example job test: uses: - build.bin - shell: - - ./build/example test + shell: | + ./build/example test ``` Each job is a map with the following attributes: `shell` -: List of shell commands to perform the job +: Shell script to perform the job. `artifact ` (optional) : Defines artifact `` produced by this job. Is itself defined as a dictionary. -- cgit v1.2.3