From 631af10809c54771d02fc36c37e1156dafe3615d Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Thu, 19 Sep 2024 10:33:03 -0600 Subject: [PATCH] install azle before global dependencies --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 77d1e9a3b5..20945b47e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,11 +76,13 @@ jobs: run: | # Install dfx (Note: DFX must be installed before `npx azle` because the azle instalation process requires dfx) src/build/stable/commands/install_global_dependencies/install_dfx.sh ${{ steps.get-dfx-version.outputs.dfx-version }} + echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH + + - run: npm install - name: Install global dependencies run: | AZLE_VERBOSE=true npx azle install-global-dependencies --rust --wasi2ic - echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH # TODO we should use some Action-specific bot account - name: Configure git for publishing release