From 8d3a0809176d758d6cf2581f1dfc076c8e47ecbc Mon Sep 17 00:00:00 2001 From: npty Date: Tue, 27 Aug 2024 11:24:33 +0000 Subject: [PATCH] chore: fix sui version --- .github/actions/install/action.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/actions/install/action.yaml b/.github/actions/install/action.yaml index 3b89e2e3..be838dd5 100644 --- a/.github/actions/install/action.yaml +++ b/.github/actions/install/action.yaml @@ -1,16 +1,14 @@ name: Install Dependencies description: 'Setup Sui CLI and install dependencies' -env: - SUI_VERSION: mainnet-v1.31.1 - runs: using: 'composite' steps: - - name: Debug Action Input + - name: Assign Sui Version shell: bash - run: echo "SUI_VERSION=${{ inputs.SUI_VERSION }}" + run: | + echo "SUI_VERSION=mainnet-v1.31.1" >> $GITHUB_ENV - name: Install Dependencies shell: bash