A general Debian image for Woodpecker CI with a bash to execute commands.
- Shell 65.2%
- Dockerfile 34.8%
| .gitignore | ||
| .markdownlint.json | ||
| .prettierrc | ||
| build.sh | ||
| Containerfile | ||
| LICENSE | ||
| README.md | ||
| renovate.json | ||
| test.sh | ||
Generic Woodpecker CI plugin
This is a Debian based image where commands can be executed in bash. Before
command execution, the envvars file is read if exists.
Usage
It can be used at any event.
steps:
- name: Execute commands
image: code.thinkaboutit.tech/pandora/generic.woodpecker
settings:
commands:
- ls -l
- whoami
script: |
FOO=value
echo $$FOO
debug: true
Settings
| Name | Default value | Description |
|---|---|---|
| commands | commands that are executed in new shell after each other | |
| script | script is saved and run by bash |