mirror of
https://codeberg.org/gigirassy/riptide
synced 2026-08-30 15:27:38 +00:00
22 lines
520 B
YAML
22 lines
520 B
YAML
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 |