Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Oct 30, 2023
1 parent 72e20de commit ef21f0b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/gates_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,19 @@ jobs:
uses: actions/download-artifact@v3
with:
name: nargo-x86_64-unknown-linux-gnu
path: ./
path: ./nargo_bin

- name: Set nargo on PATH
run: |
ls -l .
# 7z e ./nargo-x86_64-unknown-linux-gnu
# ls -l .
nargo_binary="${{ github.workspace }}/nargo"
nargo_bin_dir="./nargo_bin"
nargo_binary="$nargo_bin_dir/nargo"
chmod +x $nargo_binary
echo "$(dirname $nargo_binary)" >> $GITHUB_PATH
export PATH="$PATH:$(dirname $nargo_binary)"
ls -l $nargo_bin_dir
echo "$nargo_bin_dir" >> $GITHUB_PATH
export PATH="$PATH:$nargo_bin_dir"
echo $(which nargo)
$nargo_binary --version
Expand Down

0 comments on commit ef21f0b

Please sign in to comment.