This repository has been archived on 2024-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
services-panel/.woodpecker.yml
Nikurasu f787448021
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Fixed woodpecker file secrets
2023-03-04 20:03:38 +01:00

14 lines
398 B
YAML

workspace:
base: /hugo
path: services-panel
pipeline:
build:
image: klakegg/hugo:ext-alpine-ci
commands:
- apk add curl
- hugo
- tar -czf archive.tar.gz -C ./public/ .
- "curl --request POST --url $URL --header 'Content-Type: multipart/form-data' --header 'Static-Hoster-Key: $API_KEY' --form STATIC_PAGE=@$(pwd)/archive.tar.gz"
secrets: [ API_KEY, URL ]