From 5e4248e525609c7f03f7b924d504195b1a66b8f4 Mon Sep 17 00:00:00 2001 From: Pavel Kisialiou Date: Thu, 19 Dec 2024 15:24:21 +0300 Subject: [PATCH] Fix GA workflow with correct paths. --- .github/workflows/build-contracts.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-contracts.yaml b/.github/workflows/build-contracts.yaml index 228e4a6e..ab9d8f3b 100644 --- a/.github/workflows/build-contracts.yaml +++ b/.github/workflows/build-contracts.yaml @@ -40,7 +40,7 @@ jobs: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/near/near-cli-rs/releases/download/v0.7.4/near-cli-rs-installer.sh | sh - name: Install Docker - if: matrix.platform == 'solana' + if: matrix.platform == 'near' uses: docker/setup-buildx-action@v2 - name: Install Solana CLI @@ -57,11 +57,11 @@ jobs: - name: Build Contracts run: | if [ "${{ matrix.platform }}" == "evm" ]; then - make evm-build + make -C ${{ github.workspace }}/e2e-testing/ evm-build elif [ "${{ matrix.platform }}" == "near" ]; then - make near-build + make -C ${{ github.workspace }}/e2e-testing/ near-build elif [ "${{ matrix.platform }}" == "solana" ]; then - make solana-build + make -C ${{ github.workspace }}/e2e-testing/ solana-build fi - name: Upload Artifacts