test new netlify-cli container
All checks were successful
ci/woodpecker/push/deploy-netlify Pipeline was successful

This commit is contained in:
Adora Laura Kalb 2023-08-14 08:03:36 +02:00
parent ffe43db394
commit 064988d539
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056

View file

@ -11,7 +11,9 @@ steps:
- hugo --minify --destination ./public
deploy-staging:
image: node:alpine
# image: node:alpine
image: code.lila.network/lauralani/netlify-cli:latest
pull: true
when:
- event: push
branch: staging
@ -19,12 +21,14 @@ steps:
- NETLIFY_AUTH_TOKEN
- NETLIFY_SITE_ID
commands:
- npm install netlify-cli -g
# - npm install netlify-cli -g
- netlify deploy --alias stage --dir ./public
deploy-production:
image: node:alpine
# image: node:alpine
image: code.lila.network/lauralani/netlify-cli:latest
pull: true
when:
- event: push
branch: main
@ -32,5 +36,5 @@ steps:
- NETLIFY_AUTH_TOKEN
- NETLIFY_SITE_ID
commands:
- npm install netlify-cli -g
# - npm install netlify-cli -g
- netlify deploy --prod --dir ./public