remove woodpecker pipeline
This commit is contained in:
parent
a8e6b92c03
commit
05e1a9fc2b
|
@ -1,55 +0,0 @@
|
|||
when:
|
||||
event: tag
|
||||
steps:
|
||||
build:
|
||||
image: alpine@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd
|
||||
commands: |
|
||||
apk add bash make sassc glib-dev gdk-pixbuf libxml2-utils gtk-murrine-engine rsvg-convert librsvg
|
||||
mkdir -p pkg/usr/share/themes
|
||||
oomox-gtk-theme/change_color.sh -t pkg/usr/share/themes -o tokyonight -d true ./tokyonight
|
||||
|
||||
package-xbps:
|
||||
image: ghcr.io/void-linux/void-musl-busybox@sha256:6c96b0ae5e1832e9bacaf3a77d51935a96454e1c13ef227998557506991d6f29
|
||||
environment:
|
||||
- LICENSE=GPL-3.0
|
||||
- SHORT_DESCRIPTION=Tokyonight GTK Theme
|
||||
commands: |
|
||||
xbps-create -A x86_64 \
|
||||
-H "$${CI_REPO_URL}" \
|
||||
-l "$${LICENSE}" \
|
||||
-n "$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1" \
|
||||
-m "$${CI_COMMIT_AUTHOR} <$${CI_COMMIT_AUTHOR_EMAIL}>" \
|
||||
-s "$${SHORT_DESCRIPTION}" \
|
||||
-c "$${CI_COMMIT_MESSAGE}" \
|
||||
"$${CI_WORKSPACE}/pkg"
|
||||
|
||||
package-targz:
|
||||
image: alpine@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd
|
||||
commands: |
|
||||
tar czf $${CI_REPO_NAME}-$${CI_COMMIT_TAG}.tar.gz --directory=$${CI_WORKSPACE}/pkg .
|
||||
|
||||
publish:
|
||||
image: woodpeckerci/plugin-gitea-release@sha256:d778df013539760834d6dccfed940352432dfb56961266ecdd8fd46d498e22f8
|
||||
settings:
|
||||
base_url: https://git.snaile.de
|
||||
files:
|
||||
- "${CI_REPO_NAME}-${CI_COMMIT_TAG}.tar.gz"
|
||||
api_key:
|
||||
from_secret: gitea_release
|
||||
target: main
|
||||
|
||||
publish-xbps:
|
||||
image: ghcr.io/void-linux/void-musl-busybox@sha256:6c96b0ae5e1832e9bacaf3a77d51935a96454e1c13ef227998557506991d6f29
|
||||
environment:
|
||||
- XBPS_TARGET_ARCH=x86_64
|
||||
secrets:
|
||||
- source: xbps_pem_passphrase
|
||||
target: XBPS_PASSPHRASE
|
||||
volumes:
|
||||
- /var/www/xbps:/target
|
||||
- /etc/woodpecker/:/etc/woodpecker:ro
|
||||
commands: |
|
||||
export XBPS_TARGET_ARCH
|
||||
mv $${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps /target
|
||||
xbps-rindex -a /target/$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps
|
||||
xbps-rindex -S --signedby "$${CI_COMMIT_AUTHOR} <$${CI_COMMIT_AUTHOR_EMAIL}>" --privkey /etc/woodpecker/privkey.pem /target/$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps
|
Loading…
Reference in New Issue