From 42ff5eea357152ae7d991eabc16cf9b01885c188 Mon Sep 17 00:00:00 2001 From: spypsy Date: Fri, 23 Aug 2024 15:49:10 +0100 Subject: [PATCH] fix: pass var.DEPLOY_TAG to manifest jobs (#8160) --- .github/workflows/devnet-deploys.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devnet-deploys.yml b/.github/workflows/devnet-deploys.yml index 736baf0ac7e..22bd1f9bd97 100644 --- a/.github/workflows/devnet-deploys.yml +++ b/.github/workflows/devnet-deploys.yml @@ -344,7 +344,15 @@ jobs: publish-aztec-manifests: needs: - [build-aztec, build-aztec-arm, build-aztec-nargo, build-aztec-nargo-arm] + [ + set-network, + build-aztec, + build-aztec-arm, + build-aztec-nargo, + build-aztec-nargo-arm, + ] + env: + DEPLOY_TAG: ${{ needs.set-network.outputs.deploy_tag }} runs-on: ${{ github.actor }}-x86 steps: - uses: actions/checkout@v4 @@ -477,7 +485,9 @@ jobs: earthly-ci --no-output --push ./yarn-project+export-cli-wallet --DIST_TAG=${{ github.sha }} --ARCH=arm64 publish-cli-wallet-manifest: - needs: [build-cli-wallet, build-cli-wallet-arm] + needs: [set-network, build-cli-wallet, build-cli-wallet-arm] + env: + DEPLOY_TAG: ${{ needs.set-network.outputs.deploy_tag }} runs-on: ${{ github.actor }}-x86 steps: - uses: actions/checkout@v4