Skip to content

Commit

Permalink
fix: pass var.DEPLOY_TAG to manifest jobs (#8160)
Browse files Browse the repository at this point in the history
  • Loading branch information
spypsy authored Aug 23, 2024
1 parent 7cd2d30 commit 42ff5ee
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/devnet-deploys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 42ff5ee

Please sign in to comment.