From 34dc25a06ae443a8163b2a34e12645e684fed4e6 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Tue, 17 Sep 2024 14:41:40 -0600 Subject: [PATCH] try this --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de499004cf..6febb70aa6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -114,11 +114,14 @@ jobs: # TODO Hey Jordan, This is here to demonstrate two different ways of doing get node version and get dfx version. I think we should unify them, but I wanted to have both to see which you prefered uses: ./.github/actions/get_dfx_version + - run: echo ${{ steps.get-dfx-version.outputs.dfx-version }} + - run: echo ${{ steps.get-dfx-version.outputs }} + - name: Run pre-test Azle setup run: | # Install dfx (Note: DFX must be installed before `npm install` because the azle instalation process required dfx) - DFXVM_INIT_YES=true DFX_VERSION=${{ steps.get-dfx-version.outputs }} sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)" + DFXVM_INIT_YES=true DFX_VERSION=${{ steps.get-dfx-version.outputs.dfx-version }} sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)" echo "$HOME/.local/share/dfx/bin" >> $GITHUB_PATH npm install