13 lines
256 B
YAML
13 lines
256 B
YAML
pipeline:
|
|
test:
|
|
image: docker
|
|
secrets: [ blarp, test_key ]
|
|
commands:
|
|
- echo hello
|
|
- echo "$BLARP"
|
|
- echo $BLARP > test
|
|
- echo $TEST_KEY > testkey
|
|
- wc -c test
|
|
- cat test
|
|
- ls -la
|
|
- file testkey
|