fix: sed not installed, release pipeline fails
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 1m41s
Continuous Integration / Build Package (push) Successful in 1m54s

This commit is contained in:
Konstantin Fickel 2026-04-03 14:06:44 +02:00
parent 725ebcfbfd
commit 16218a8da7
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -22,7 +22,9 @@ jobs:
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
# Manual trigger: read version from Cargo.toml
VERSION=$(grep '^version' Cargo.toml | head -1 | sed 's/.*"\(.*\)".*/\1/')
VERSION_LINE=$(grep '^version' Cargo.toml | head -1)
VERSION="${VERSION_LINE#*\"}"
VERSION="${VERSION%\"*}"
TAG="v${VERSION}"
# Check if tag already exists