fix: Require build job before releasing

This commit is contained in:
Marty Oehme 2025-04-09 11:41:36 +02:00
parent 6eb48bd180
commit a263e3ddb0
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -68,6 +68,8 @@ jobs:
name: Create github release name: Create github release
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
needs:
- build
permissions: permissions:
contents: write contents: write
steps: steps: