Add .woodpecker/release.yml

This commit is contained in:
gigirassy
2026-06-14 21:04:01 +02:00
parent 9925c1c897
commit 587c680694
+22
View File
@@ -0,0 +1,22 @@
when:
event: [tag]
steps:
- name: build-static
image: kgrv/rust:latest
commands:
- RUSTFLAGS="-Ctarget-feature=+crt-static" compile --release
- cp target/*/release/riptide riptide/
- tar -czf riptide.tgz -C riptide .
- name: release-tag
image: woodpeckerci/plugin-release
settings:
base-url: https://codeberg.org
api-key:
from_secret: RIPTIDE_TOK
title: ${CI_COMMIT_TAG}
prerelease: false
checksum: sha256
files:
- riptide.tgz