A general Debian image for Woodpecker CI with a bash to execute commands.
  • Shell 65.2%
  • Dockerfile 34.8%
Find a file
onlyati 01b5ef2eac
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/cron/vulnerability Pipeline was successful
ci/woodpecker/cron/renovate Pipeline was successful
ci/woodpecker/cron/auto_merge Pipeline was successful
add license
2026-04-11 13:49:41 +02: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
build.sh remove script file 2026-04-09 12:06:56 +02:00
Containerfile Update docker.io/library/debian:trixie-slim Docker digest to 5fb7012 (#7) 2026-04-08 19:23:18 +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 remove woodpecker jobs, renovate open one PR 2026-04-11 01:02:38 +02: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