Skip to content

Commit

Permalink
Fix echidna name
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Feb 17, 2023
1 parent 839f6d8 commit d3d2fd5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,15 @@ jobs:
- name: Compress binary (Windows)
if: runner.os == 'Windows'
run: |
# GZIP=-9 tar -czf echidna.tar.gz -C /c/Users/$USER/AppData/Roaming/local/bin/ echidna-test.exe
GZIP=-9 tar -czf echidna.tar.gz -C $APPDATA/local/bin/ echidna.exe
echo "AppData $APPDATA"
find $APPDATA -name echidna-test.exe
find $APPDATA -name echidna.exe
echo "Home $HOME"
find $HOME -name echidna-test.exe
find $HOME -name echidna.exe
echo "Here"
find . -name echidna-test.exe
find . -name echidna.exe
echo "Here /c/Users/$USER/AppData/Roaming/local/bin/"
find /c/Users/$USER/AppData/Roaming/local/bin/ -name echidna.exe
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit d3d2fd5

Please sign in to comment.