This commit is contained in:
parent
255c98df66
commit
579eafd8b4
1 changed files with 16 additions and 0 deletions
16
.woodpecker.yaml
Normal file
16
.woodpecker.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
when:
|
||||||
|
- event: manual
|
||||||
|
- event: push
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: hello-world
|
||||||
|
image: node:current-alpine
|
||||||
|
commands:
|
||||||
|
- apk add --no-cache zip curl
|
||||||
|
- npm install vite -g
|
||||||
|
- vite build
|
||||||
|
- (cd dist && zip -r ../project.zip ./*)
|
||||||
|
- 'curl -s -w "%{http_code}" -X POST -F "zipfile=@project.zip" -H "Authorization: Bearer $API_KEY" https://pages.hadeedahmad.com/pages/$(basename "$PWD") | grep -q 200'
|
||||||
|
|
||||||
|
secrets: [ API_KEY ]
|
Reference in a new issue