actions/README.md

14 lines
347 B
Markdown
Raw Normal View History

2024-06-10 08:24:30 -04:00
# Woodpecker CI Example
Here are some examples for our CI interfacee. The following is a comprehensive list on what is supported to use with it.
2024-06-10 08:16:32 -04:00
2024-06-10 08:24:30 -04:00
## Basic start off
Below is a basic workflow that echos an output to the log.
```yaml
steps:
testmessage:
image: ubuntu
commands:
- echo "Hello world"
- echo "I run on TTGit"
```