23 lines
472 B
YAML
23 lines
472 B
YAML
steps:
|
|
build:
|
|
image: git.holgersson.xyz/nfr/alpine-with-gcc:3.19-20240121
|
|
pull: true
|
|
commands:
|
|
gcc main.c -o main
|
|
|
|
test:
|
|
image: git.holgersson.xyz/nfr/alpine-with-gcc:latest
|
|
pull: true
|
|
commands:
|
|
./main
|
|
|
|
publish:
|
|
image: woodpeckerci/plugin-gitea-release
|
|
settings:
|
|
base_url: https://git.holgersson.xyz
|
|
files:
|
|
- "main"
|
|
api_key:
|
|
from_secret: GITEA_ACCESS_TOKEN
|
|
target: main
|