A general Debian image for Woodpecker CI with a bash to execute commands.
- Shell 65.2%
- Dockerfile 34.8%
|
All checks were successful
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | docker.io/library/debian | final | digest | `ed87500` → `1275c56` | --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMjAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIyMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #11 |
||
|---|---|---|
| .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 |