diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 12:24:15 -0600 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 12:24:15 -0600 |
commit | 55d59057173235daac3eee96de78b0b35412d0e6 (patch) | |
tree | 58b1c7ce207d83d9801f743bcc8e213a2f631a3a /.github | |
parent | f3fb461f1e89ad351bf8d28eb16ff7f98fc23895 (diff) | |
download | fpm-55d59057173235daac3eee96de78b0b35412d0e6.tar.gz fpm-55d59057173235daac3eee96de78b0b35412d0e6.zip |
Put fpm to PATH on Windows
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ec1afda..f4e2878 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -67,11 +67,16 @@ jobs: stack build stack install - - name: macOS: put fpm to PATH + - name: put fpm to PATH (macOS) if: contains(matrix.os, 'macos') run: | cp /Users/runner/.local/bin/fpm /usr/local/bin + - name: put fpm to PATH (Windows) + if: contains(matrix.os, 'windows') + run: | + copy "C:\Users\runneradmin\AppData\Roaming\local\bin\fpm.exe" "C:\Program Files\Git\usr\bin" + - name: Run tests on Haskell fpm run: | cd bootstrap |