1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
qr-code-component/.woodpecker.yaml
Hadeed Ahmad 579eafd8b4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add workflow
2024-10-07 17:43:59 +05:00

16 lines
463 B
YAML

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 ]