fix: don't append channel to hamh-testing project directory

This commit is contained in:
RiDDiX
2026-01-29 00:32:21 +01:00
parent 8b1e146395
commit be474ebdb8

View File

@@ -52,8 +52,8 @@ jobs:
CHANGELOG_URL="${{ github.event.inputs.changelogUrl }}"
fi
# Append channel to project name if not latest
if [ "$CHANNEL" != "latest" ]; then
# Append channel to project name if not latest (but not for testing)
if [ "$CHANNEL" != "latest" ] && [ "$PROJECT" != "hamh-testing" ]; then
PROJECT="$PROJECT-$CHANNEL"
fi