e2e-final-1498/.woodpecker.yml
jordan 16691d74fe
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
Initialize project from astro-landing template
2026-01-30 00:04:59 +00:00

37 lines
774 B
YAML

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: "e2e-final-1498"
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/e2e-final-1498 e2e-final-1498=registry.threesix.ai/e2e-final-1498:${CI_COMMIT_SHA:0:8} -n projects
when:
- event: push
branch: main