File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -53,16 +53,18 @@ jobs:
53
53
if : contains(matrix.os, 'macos')
54
54
run : |
55
55
mkdir /Users/runner/.local/bin
56
- 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
56
+ curl -L https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3- osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C /Users/runner/.local/bin
57
57
58
58
- name : Install Haskell Linux
59
59
if : contains(matrix.os, 'ubuntu')
60
- uses : mstksg/setup-stack@v1
60
+ run : |
61
+ mkdir -p /home/runner/.local/bin
62
+ curl -L https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3-linux-x86_64.tar.gz | tar --strip-components 1 --wildcards -xz */stack -C /home/runner/.local/bin
61
63
62
64
- name : Install Haskell Windows
63
65
if : contains(matrix.os, 'windows')
64
66
run : |
65
- (New-Object System.Net.WebClient).DownloadFile("https://get.haskellstack.org/stable/ windows-x86_64.zip", "windows-x86_64.zip")
67
+ (New-Object System.Net.WebClient).DownloadFile("https://github.com/commercialhaskell/stack/releases/download/v2.3.3/stack-2.3.3- windows-x86_64.zip", "windows-x86_64.zip")
66
68
mkdir stack-tmp
67
69
cd stack-tmp
68
70
unzip ..\windows-x86_64.zip
You can’t perform that action at this time.
0 commit comments