ci: don't create gh release for alpha and beta versions

This commit is contained in:
Nicolas Meienberger
2025-11-15 12:28:34 +01:00
parent 2c0f22af59
commit 29c96c9fc6

View File

@@ -77,7 +77,8 @@ jobs:
publish-release:
runs-on: ubuntu-latest
needs: [build-images]
needs: [build-images, determine-release-type]
if: needs.determine-release-type.outputs.release_type == 'release'
outputs:
id: ${{ steps.create_release.outputs.id }}
steps: