personal-website/.woodpecker/deploy-netlify.yaml

41 lines
1.1 KiB
YAML
Raw Normal View History

2023-08-08 09:03:06 +02:00
steps:
build:
image: golang:1.20-bookworm
2023-08-08 09:13:04 +02:00
environment:
- HUGO_VERSION=0.117.0
2023-08-08 09:03:06 +02:00
when:
- event: push
branch: [main, staging]
commands:
2023-08-08 09:13:53 +02:00
- wget https://github.com/gohugoio/hugo/releases/download/v$${HUGO_VERSION}/hugo_extended_$${HUGO_VERSION}_linux-amd64.deb && apt install ./hugo_extended_$${HUGO_VERSION}_linux-amd64.deb && rm -f hugo_extended_$${HUGO_VERSION}_linux-amd64.deb
2023-08-08 09:03:06 +02:00
- hugo --minify --destination ./public
2023-08-08 09:13:04 +02:00
2023-08-08 09:03:06 +02:00
deploy-staging:
2023-08-14 08:03:36 +02:00
# image: node:alpine
2023-08-14 10:32:22 +02:00
image: lauralani/netlify-cli:latest
2023-08-14 08:03:36 +02:00
pull: true
2023-08-08 09:03:06 +02:00
when:
- event: push
branch: staging
secrets:
- NETLIFY_AUTH_TOKEN
- NETLIFY_SITE_ID
commands:
2023-08-14 08:03:36 +02:00
# - npm install netlify-cli -g
2023-08-08 09:03:06 +02:00
- netlify deploy --alias stage --dir ./public
deploy-production:
2023-08-14 08:03:36 +02:00
# image: node:alpine
2023-08-14 10:32:22 +02:00
image: lauralani/netlify-cli:latest
2023-08-14 08:03:36 +02:00
pull: true
2023-08-08 09:03:06 +02:00
when:
- event: push
branch: main
secrets:
- NETLIFY_AUTH_TOKEN
- NETLIFY_SITE_ID
commands:
2023-08-14 08:03:36 +02:00
# - npm install netlify-cli -g
2023-08-08 09:03:06 +02:00
- netlify deploy --prod --dir ./public