add cloudflare CI
This commit is contained in:
parent
84998effc4
commit
e86e128f40
2 changed files with 42 additions and 1 deletions
41
.woodpecker/deploy-cloudflare.yaml
Normal file
41
.woodpecker/deploy-cloudflare.yaml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: golang:1.21-bookworm
|
||||||
|
environment:
|
||||||
|
- HUGO_VERSION=0.123.4
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: [main, staging]
|
||||||
|
commands:
|
||||||
|
- 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
|
||||||
|
- hugo --minify --destination ./public
|
||||||
|
|
||||||
|
deploy-production:
|
||||||
|
image: node:alpine
|
||||||
|
# image: lauralani/netlify-cli:latest
|
||||||
|
pull: true
|
||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: staging
|
||||||
|
secrets:
|
||||||
|
- CLOUDFLARE_ACCOUNT_ID
|
||||||
|
- CLOUDFLARE_API_TOKEN
|
||||||
|
commands:
|
||||||
|
- npm install wrangler --save-dev
|
||||||
|
- npx wrangler pages deploy ./public --project-name adorable-website
|
||||||
|
|
||||||
|
|
||||||
|
#deploy-production:
|
||||||
|
# # image: node:alpine
|
||||||
|
# image: lauralani/netlify-cli:latest
|
||||||
|
# pull: true
|
||||||
|
# when:
|
||||||
|
# - event: push
|
||||||
|
# branch: main
|
||||||
|
# secrets:
|
||||||
|
# - NETLIFY_AUTH_TOKEN
|
||||||
|
# - NETLIFY_SITE_ID
|
||||||
|
# commands:
|
||||||
|
# # - npm install netlify-cli -g
|
||||||
|
# - netlify deploy --prod --dir ./public
|
|
@ -2,7 +2,7 @@ steps:
|
||||||
build:
|
build:
|
||||||
image: golang:1.21-bookworm
|
image: golang:1.21-bookworm
|
||||||
environment:
|
environment:
|
||||||
- HUGO_VERSION=0.120.4
|
- HUGO_VERSION=0.123.4
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
when:
|
when:
|
||||||
- event: push
|
- event: push
|
||||||
|
|
Loading…
Reference in a new issue