跳到主要内容

精选 Woodpecker 资源

与 Woodpecker CI 相关的精选资源列表(工具、项目、博客文章)。

如果您想添加新条目,请提交 pull-request

官方资源

使用 Woodpecker 的项目

工具

插件

官方插件

社区插件

博客文章和教程

配置示例

基本 Go 项目

steps:
- name: test
image: golang:1.21
commands:
- go test ./...

- name: build
image: golang:1.21
commands:
- go build -o app

Node.js 项目

steps:
- name: install
image: node:18
commands:
- npm ci

- name: test
image: node:18
commands:
- npm test

- name: build
image: node:18
commands:
- npm run build

Docker 构建和推送

steps:
- name: build-and-push
image: woodpeckerci/plugin-docker-buildx
settings:
registry: docker.io
repo: myuser/myapp
tags: latest
username:
from_secret: docker_username
password:
from_secret: docker_password

社区

贡献

如果您有任何与 Woodpecker CI 相关的精彩资源,欢迎通过以下方式贡献:

  1. Fork Woodpecker 仓库
  2. 编辑此文件
  3. 提交 pull request

请确保您添加的资源:

  • 与 Woodpecker CI 相关
  • 质量良好且维护良好
  • 包含简短但描述性的说明

感谢您帮助 Woodpecker 社区成长!