From 99789ec7a7ff645a91c3a037f535e5769c64bb59 Mon Sep 17 00:00:00 2001 From: Siddhartha Basu Date: Wed, 3 Jul 2024 13:54:14 -0500 Subject: [PATCH] feat(test_deploy.yaml): pass dagger_version and dagger_checksum to deploy jobs This change ensures that the version and checksum of Dagger are explicitly passed to the deployment setup and backend deployment jobs. --- .github/workflows/test_deploy.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_deploy.yaml b/.github/workflows/test_deploy.yaml index 2caea85..b0ab71c 100644 --- a/.github/workflows/test_deploy.yaml +++ b/.github/workflows/test_deploy.yaml @@ -8,6 +8,7 @@ on: jobs: setup-dagger: uses: ./.github/workflows/setup-dagger.yaml + deploy-setup: needs: setup-dagger uses: ./.github/workflows/deploy-setup.yaml @@ -15,10 +16,14 @@ jobs: with: cluster: ${{ vars.DEV_STAGING_CLUSTER }} cluster_state_storage: ${{ vars.DEV_STAGING_KOPS_STATE_STORAGE }} + dagger_version: ${{ needs.setup-dagger.outputs.dagger_version }} + dagger_checksum: ${{ needs.setup-dagger.outputs.dagger_checksum }} + deploy-backend: needs: deploy-setup uses: ./.github/workflows/deploy-backend.yaml secrets: inherit with: run_id: ${{ needs.deploy-setup.outputs.workflow_run_id }} - + dagger_version: ${{ needs.setup-dagger.outputs.dagger_version }} + dagger_checksum: ${{ needs.setup-dagger.outputs.dagger_checksum }}