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 c5bd9c7ea4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Add workflow
2024-10-07 17:59:28 +05:00

19 lines
536 B
YAML

steps:
- name: deploy
image: node:current-alpine
commands:
- apk add --no-cache zip curl
- npm install vite -g
- vite build
- (cd dist && zip -r ../project.zip ./*)
- 'AUTH_HEADER="Authorization: Bearer $API_KEY"'
- API_URL=https://pages.hadeedahmad.com/pages/$(basename "$PWD")
- curl -s -w "%{http_code}" -X POST -F "zipfile=@project.zip" -H "AUTH_HEADER" "$API_URL" | grep -q 200
secrets: [ API_KEY ]
when:
- event: manual
- event: push
branch: main