actions/README.md

347 B

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.

Basic start off

Below is a basic workflow that echos an output to the log.

steps:
  testmessage:
    image: ubuntu
    commands:
      - echo "Hello world"
      - echo "I run on TTGit"