Skip to content

Commit

Permalink
Exporting PATH after Solana installation
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpar committed Jul 25, 2023
1 parent 174eb64 commit c82819c
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/cross-chain-solana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,24 @@ jobs:
run: |
sh -c "$(curl -sSfL https://release.solana.com/v1.16.5/install)"
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
source /home/runner/.profile
source /home/runner/.bash_profile
source /home/runner/.bashrc
source $HOME/.profile
source $HOME/.bash_profile
source $HOME/.bashrc
echo "---"
cat /home/runner/.profile
echo "==="
cat /home/runner/.bash_profile
echo "~~~"
cat /home/runner/.bashrc
echo "+++"
echo $PATH
solana --version
which solana
- name: Checking Solana version
run: solana --version
run: |
which solana
solana --version
- name: Install Anchor
run: |
Expand Down

0 comments on commit c82819c

Please sign in to comment.