A general Debian image for Woodpecker CI with a bash to execute commands.
- Shell 65.2%
- Dockerfile 34.8%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
All checks were successful
ci/woodpecker/push/change_log Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/release Pipeline was successful
ci/woodpecker/cron/vulnerability Pipeline was successful
ci/woodpecker/cron/auto_merge Pipeline was successful
ci/woodpecker/cron/release Pipeline was successful
ci/woodpecker/cron/renovate Pipeline was successful
Merged automatically |
||
| .gitignore | ||
| .markdownlint.json | ||
| .prettierrc | ||
| .trivyignore | ||
| 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 |