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

21 lines
565 B
YAML
Raw Normal View History

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