Skip to content

Commit

Permalink
👷 Fix export path
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielePicco committed Oct 4, 2024
1 parent 60ea897 commit ac75c40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
- name: Install Solana
run: |
sh -c "$(curl -sSfL https://release.solana.com/${{ env.solana_version }}/install)"
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH"
echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
solana --version
lint:
Expand Down Expand Up @@ -75,6 +76,7 @@ jobs:
- uses: actions/checkout@v4
- name: Create keypair
run: |
export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH"
solana --version
solana-keygen new --silent --no-bip39-passphrase
solana airdrop 100
Expand Down

0 comments on commit ac75c40

Please sign in to comment.