This commit is contained in:
parent
782d3ae294
commit
f0644fbe64
2 changed files with 4668 additions and 0 deletions
27
.woodpecker/deploy.yml
Normal file
27
.woodpecker/deploy.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: git.mzhang.io/michael/blog-docker-builder:6gzd1rhcl41y02yw4z9kpjgrhxifqyfs
|
||||||
|
environment:
|
||||||
|
- ASTRO_TELEMETRY_DISABLED=1
|
||||||
|
commands:
|
||||||
|
- mkdir /tmp
|
||||||
|
- rm -rf node_modules
|
||||||
|
- npm i -g pnpm@9.4.0
|
||||||
|
- npx pnpm install --frozen-lockfile
|
||||||
|
- npx pnpm run build
|
||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
image: git.mzhang.io/michael/blog-docker-builder:6gzd1rhcl41y02yw4z9kpjgrhxifqyfs
|
||||||
|
commands:
|
||||||
|
- mc alias set $AWS_DEFAULT_REGION $AWS_ENDPOINT_URL $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY --api S3v4
|
||||||
|
- mc mirror --overwrite ./dist/ $AWS_DEFAULT_REGION/mzws-docs-website/
|
||||||
|
secrets:
|
||||||
|
- AWS_ACCESS_KEY_ID
|
||||||
|
- AWS_DEFAULT_REGION
|
||||||
|
- AWS_ENDPOINT_URL
|
||||||
|
- AWS_SECRET_ACCESS_KEY
|
||||||
|
when:
|
||||||
|
- branch: master
|
||||||
|
event: push
|
4641
pnpm-lock.yaml
Normal file
4641
pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue