From d665aafae0a20046050ea8957d7385a98e019f6a Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Mon, 18 Nov 2024 14:40:12 +0100 Subject: [PATCH] add missing job dependency --- .github/workflows/app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml index bddf895..6976017 100644 --- a/.github/workflows/app.yml +++ b/.github/workflows/app.yml @@ -66,7 +66,7 @@ jobs: deploy: name: Deploy app runs-on: ubuntu-latest - needs: build_and_publish + needs: [ versionize, build_and_publish ] strategy: matrix: environment: [ 'prd' ] @@ -92,5 +92,5 @@ jobs: --location westeurope \ --template-file infrastructure/main.bicep \ --parameters infrastructure/params/${{ matrix.environment }}.bicepparam \ - --parameters version=${{ needs.versionize.outputs.semver }} \ + --parameters version=${{needs.versionize.outputs.semver}} \ --parameters registryUrl=${{ secrets.ACR_LOGIN_SERVER }} \ No newline at end of file