jenkins-projects/.woodpecker.yaml
nvpie exozyme 3ed22e25dc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
autopush
2024-01-31 13:42:59 +00:00

23 lines
328 B
YAML

steps:
TEST:
image: zsh
commands:
- echo "hi this is test"
BUILD:
image: zsh
commands:
- podman build . -t todoapp
CLEAN:
image: zsh
commands:
- podman rm -f todoapp || true
RUN:
image: zsh
commands:
- podman run -d -p 8989:8989 --name todoapp todoapp:latest