From 4062972ddec7c636e29d1243ed8236bf09af1e5f Mon Sep 17 00:00:00 2001 From: Foivos Date: Wed, 15 May 2024 12:51:35 +0300 Subject: [PATCH] try moving different things into bin --- .github/workflows/codecov.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index eac1206f..42e69a8d 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -6,7 +6,7 @@ concurrency: cancel-in-progress: true jobs: - test: + coverage: runs-on: blacksmith-16vcpu-ubuntu-2204 steps: @@ -19,8 +19,7 @@ jobs: run: | wget https://github.com/MystenLabs/sui/releases/download/${SUI_VERSION}/sui-${SUI_VERSION}-ubuntu-x86_64.tgz tar -xvf sui-${SUI_VERSION}-ubuntu-x86_64.tgz - sudo mv ./target/release/sui-test-validator-ubuntu-x86_64 /usr/local/bin/sui-test-validator - sudo mv ./target/release/sui-ubuntu-x86_64 /usr/local/bin/sui + sudo mv ./sui-${SUI_VERSION}-ubuntu-x86_64/* /usr/local/bin/ rm -rf sui-${SUI_VERSION}-ubuntu-x86_64.tgz - name: Checkout code