diff options
author | Christian Segundo | 2024-02-25 04:01:21 +0100 |
---|---|---|
committer | Christian Segundo | 2024-02-25 04:01:21 +0100 |
commit | 26406369f4d643a610c67e220811ba06f71c3efe (patch) | |
tree | 403d9238275866a043ebad6f867359b3453c07b6 | |
parent | 300749d97c8c16dfcaa856579a88dbc35e0f2303 (diff) | |
download | concourse-26406369f4d643a610c67e220811ba06f71c3efe.tar.gz |
move README.md to wiki
-rw-r--r-- | README.md | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/README.md b/README.md deleted file mode 100644 index de46904..0000000 --- a/README.md +++ /dev/null @@ -1,31 +0,0 @@ -# concourse - -A versioned catalogue of re-usable Concourse bits - -## Usage - -Include the following resource in the pipeline where you wish to consume a task: - -```yaml -- name: concourse - type: git - source: - uri: https://git.segundo.io/concourse -``` - -To use a task, ensure that you `get: concourse` earlier in your plan. Remember to perform any input/output mapping from the generic names _inside_ the task (on the left of the colon), to your specific names _outside_ the task (on the right of the colon). - -```yaml -jobs: - name: do-the-thing - plan: - - get: concourse-tasks - # ... - - task: tarball-files - file: concourse-tasks/tar/task.yml - input_mapping: { input: your-directory } - output_mapping: { output: name-you-want } - params: - INCLUDE: file1 file2 - TARBALL_NAME: my-tarball -``` |