Skip to content

Commit

Permalink
Fix GA workflow with correct paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
kisialiou committed Dec 19, 2024
1 parent e0c2de8 commit 5e4248e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-contracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5e4248e

Please sign in to comment.