add missing job dependency

This commit is contained in:
Chris Kruining 2024-11-18 14:40:12 +01:00
parent 16e2f23621
commit d665aafae0
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -66,7 +66,7 @@ jobs:
deploy: deploy:
name: Deploy app name: Deploy app
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build_and_publish needs: [ versionize, build_and_publish ]
strategy: strategy:
matrix: matrix:
environment: [ 'prd' ] environment: [ 'prd' ]
@ -92,5 +92,5 @@ jobs:
--location westeurope \ --location westeurope \
--template-file infrastructure/main.bicep \ --template-file infrastructure/main.bicep \
--parameters infrastructure/params/${{ matrix.environment }}.bicepparam \ --parameters infrastructure/params/${{ matrix.environment }}.bicepparam \
--parameters version=${{ needs.versionize.outputs.semver }} \ --parameters version=${{needs.versionize.outputs.semver}} \
--parameters registryUrl=${{ secrets.ACR_LOGIN_SERVER }} --parameters registryUrl=${{ secrets.ACR_LOGIN_SERVER }}