dwmblocks-custom/.woodpecker.yml

37 lines
1.1 KiB
YAML

when:
event: tag
steps:
build:
image: alpine
commands: |
apk add --no-cache build-base gcc xcb-util-dev pkgconfig >/dev/null
make install DESTDIR="$CI_WORKSPACE/pkg" PREFIX="/usr"
package-void:
image: alpine
commands: |
wget http://repo-default.voidlinux.org/static/xbps-static-latest.x86_64-musl.tar.xz && \
tar xvf xbps-static-latest.x86_64-musl.tar.xz -C / && \
rm -f xbps-static-latest.x86_64-musl.tar.xz
xbps-create -A x86_64 \
-H "${CI_REPO_URL}" \
-l "{GPL-2.0}" \
-n "dwmblocks-async-${CI_COMMIT_TAG}" \
-m "${CI_COMMIT_AUTHOR} <${CI_COMMIT_AUTHOR_EMAIL}>" \
-s "Customized dwmblocks-async" \
-c "${CI_COMMIT_MESSAGE}" \
"$CI_WORKSPACE/pkg"
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.snaile.de
files:
# Could also be "hello-world*" to match both
- "pkg/usr/bin/dwmblocks"
- "*.xbps"
api_key:
from_secret: gitea-release
target: main