Add .woodpecker.yml from template
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
jordan 2026-01-29 08:37:44 +00:00
parent 527363cf73
commit c7ad4d4bcd

36
.woodpecker.yml Normal file
View File

@ -0,0 +1,36 @@
steps:
install:
image: node:20-alpine
commands:
- npm install
when:
- event: [push, pull_request]
build:
image: node:20-alpine
commands:
- npm run build
when:
- event: [push, pull_request]
docker:
image: woodpeckerci/plugin-kaniko
settings:
registry: registry.threesix.ai
repo: "homepage"
tags:
- latest
- ${CI_COMMIT_SHA:0:8}
cache: true
skip-tls-verify: true
when:
- event: push
branch: main
deploy:
image: bitnami/kubectl:latest
commands:
- kubectl set image deployment/homepage homepage=registry.threesix.ai/homepage:${CI_COMMIT_SHA:0:8} -n projects
when:
- event: push
branch: main