Skip to content

Commit

Permalink
fixed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
stschiff committed Mar 6, 2024
1 parent bfa9058 commit bde4d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:
run: stack install --system-ghc

- name: Rename binaries (not windows)
if: ${{ matrix.os != "windows-latest" }}
if: ${{ matrix.os != 'windows-latest' }}
run: for TOOL in genoStats pileupCaller vcf2eigenstrat; do mv ~/.local/bin/$TOOL ~/.local/bin/$TOOL-$RUNNER_OS; done

- name: Rename binaries (windows)
if: ${{ matrix.os == "windows-latest" }}
if: ${{ matrix.os == 'windows-latest' }}
run: for %%i in (genoStats pileupCaller vcf2eigenstrat) do ren "%USERPROFILE%\.local\bin\%%i" "%%i-windows"

- name: Upload Release Asset
Expand Down

0 comments on commit bde4d87

Please sign in to comment.