add cleanup fix danser video renaming

This commit is contained in:
2025-10-01 15:00:24 +02:00
parent 8a96bcfd2b
commit 9b3ec01d41
10 changed files with 998 additions and 876 deletions

View File

@@ -1,27 +1,27 @@
name: "Create New Tag"
description: "Compute the next semantic version tag based on existing tags"
outputs:
new_tag:
description: "The new tag computed for this build"
value: ${{ steps.tag.outputs.new_tag }}
runs:
using: "composite"
steps:
- name: Create New Tag
id: tag
shell: bash
run: |
echo "Computing new tag..."
latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1) 2>/dev/null || echo "")
if [ -z "$latest_tag" ]; then
new_tag="v1.0.0"
else
IFS='.' read -r major minor patch <<< "${latest_tag#v}"
minor=$((minor + 1))
patch=0
new_tag="v${major}.${minor}.${patch}"
fi
echo "new_tag=$new_tag" >> $GITHUB_OUTPUT
echo "Computed new tag: $new_tag"
name: "Create New Tag"
description: "Compute the next semantic version tag based on existing tags"
outputs:
new_tag:
description: "The new tag computed for this build"
value: ${{ steps.tag.outputs.new_tag }}
runs:
using: "composite"
steps:
- name: Create New Tag
id: tag
shell: bash
run: |
echo "Computing new tag..."
latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1) 2>/dev/null || echo "")
if [ -z "$latest_tag" ]; then
new_tag="v1.0.0"
else
IFS='.' read -r major minor patch <<< "${latest_tag#v}"
minor=$((minor + 1))
patch=0
new_tag="v${major}.${minor}.${patch}"
fi
echo "new_tag=$new_tag" >> $GITHUB_OUTPUT
echo "Computed new tag: $new_tag"