A general Debian image for Woodpecker CI with a bash to execute commands.
  • Shell 65.2%
  • Dockerfile 34.8%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
renovate-bot 96a71870e4
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
maint: Update docker.io/library/debian:trixie-slim Docker digest to 38a76d0 #19
Merged automatically
2026-08-05 06:39:34 +00:00
.gitignore initial commit 2026-03-01 20:43:44 +01:00
.markdownlint.json Initial commit 2026-03-01 20:29:42 +01:00
.prettierrc Initial commit 2026-03-01 20:29:42 +01:00
.trivyignore fix: add CVE exceptions (#17) 2026-08-02 14:43:38 +00:00
build.sh remove script file 2026-04-09 12:06:56 +02:00
Containerfile maint: Update docker.io/library/debian:trixie-slim Docker digest to 38a76d0 #19 2026-08-05 06:39:34 +00:00
LICENSE add license 2026-04-11 13:49:41 +02:00
README.md add script option 2026-04-09 11:09:48 +02:00
renovate.json ci: Use central renovate.json (#15) 2026-07-19 11:45:43 +00:00
test.sh forgejo-move (#4) 2026-03-23 18:10:43 +00:00

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