aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-07-21 09:35:45 -0600
committerOndřej Čertík <ondrej@certik.us>2020-07-21 09:35:45 -0600
commit2c65363740608cba2715d83c72ac2465891f1043 (patch)
treec5c60bea605d49e5e86ddad5a015a0b9e0664690 /.github/workflows
parent0200fa4dfdf8cef264f2a1855dd3f69d86118a66 (diff)
downloadfpm-2c65363740608cba2715d83c72ac2465891f1043.tar.gz
fpm-2c65363740608cba2715d83c72ac2465891f1043.zip
Use a more stable url to download Haskell
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/CI.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 8437483..dfa386d 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -27,13 +27,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
- - name: Install Haskell Linux / macOS (manual)
+ - name: Install Haskell macOS
if: contains(matrix.os, 'macos')
run: |
- curl --insecure -L https://get.haskellstack.org/stable/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C /Users/runner/.local/bin
+ curl -L https://gist.github.com/certik/0e35f35753ae76f0f575d9b3d3f53633/raw/4cde02cc9215635c9401c2257a46be319e7ab6dd/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C /Users/runner/.local/bin
- - name: Install Haskell Linux / macOS
- if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
+ - name: Install Haskell Linux
+ if: contains(matrix.os, 'ubuntu')
uses: mstksg/setup-stack@v1
- name: Install Haskell Windows