woodpecker/docs/docs/20-usage/51-plugins/10-overview.md

46 lines
1.2 KiB
Markdown
Raw Normal View History

2019-11-15 11:03:15 +00:00
# Plugins
Plugins are pipeline steps that perform pre-defined tasks and are configured as steps in your pipeline. Plugins can be used to deploy code, publish artifacts, send notification, and more.
They are automatically pulled from the default container registry the agent's have configured.
2019-11-15 11:03:15 +00:00
Example pipeline using the Docker and Slack plugins:
```yaml
steps:
2019-11-15 11:03:15 +00:00
build:
image: golang
commands:
- go build
- go test
publish:
image: plugins/docker
settings:
repo: foo/bar
tags: latest
2019-11-15 11:03:15 +00:00
notify:
image: plugins/slack
settings:
channel: dev
2019-11-15 11:03:15 +00:00
```
## Plugin Isolation
Plugins are just pipeline steps. They share the build workspace, mounted as a volume, and therefore have access to your source tree.
2019-11-15 11:03:15 +00:00
## Finding Plugins
For official plugins, you can use the Woodpecker plugin index:
- [Official Woodpecker Plugins](https://woodpecker-ci.org/plugins)
:::tip
There are also other plugin lists with additional plugins. Keep in mind that [Drone](https://www.drone.io/) plugins are generally supported, but could need some adjustments and tweaking.
- [Drone Plugins](http://plugins.drone.io)
- [Geeklab Woodpecker Plugins](https://woodpecker-plugins.geekdocs.de/)
2023-10-24 12:42:05 +00:00
:::