Fix broken upload paths for RPM distributions.

This commit is contained in:
Julian Groß 2024-07-07 09:45:05 +02:00
parent 1216a52a70
commit 507d30bdfe

View file

@ -184,7 +184,8 @@ jobs:
echo "RELEASE_NUMBER=${{ github.run_number }}" >> $GITHUB_ENV echo "RELEASE_NUMBER=${{ github.run_number }}" >> $GITHUB_ENV
else # tagged else # tagged
echo "DEBVERSION=${{ github.ref_name }}-$GIT_COMMIT_SHORT-${{ matrix.os }}" >> $GITHUB_ENV echo "DEBVERSION=${{ github.ref_name }}-$GIT_COMMIT_SHORT-${{ matrix.os }}" >> $GITHUB_ENV
echo "RPMVERSION=${{ github.ref_name }}.$GIT_COMMIT_SHORT" >> $GITHUB_ENV # We remove all dash characters from RPM versions, because rpmbuild doesn't allow dashes in version numbers.
echo "RPMVERSION=${{ github.ref_name }}//-.$GIT_COMMIT_SHORT" >> $GITHUB_ENV
fi fi
if [ "${{ github.ref_type }}" == "tag" ]; then # tagged if [ "${{ github.ref_type }}" == "tag" ]; then # tagged