Skip to content

Commit 2e96f97

Browse files
Merge pull request #345 from haskellfoundation/ci-fix
Update CI config to work with changes to GitHub CI
2 parents 5b2efdf + 05630d5 commit 2e96f97

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16+
- name: Select GHC 9.2.4
17+
run: ghcup set 9.2.4
18+
1619
- name: Check out repo
1720
uses: actions/checkout@v3
1821

@@ -44,4 +47,4 @@ jobs:
4447
if: ${{ github.ref == 'refs/heads/main' }}
4548
with:
4649
github_token: ${{ secrets.GITHUB_TOKEN }}
47-
publish_dir: ./message-index/_site
50+
publish_dir: ./message-index/_site

.github/workflows/pullrequest-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14+
- name: Select GHC 9.2.4
15+
run: ghcup set 9.2.4
16+
1417
- name: Check out repo
1518
uses: actions/checkout@v3
1619

message-index/message-index.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ executable site
1414
, aeson ^>= 2.0.3
1515
, pandoc-types ^>= 1.22
1616
, containers ^>= 0.6
17-
, text ^>= 1.2
17+
, text ^>= 1.2 || ^>= 2.0
1818
ghc-options: -threaded -rtsopts -with-rtsopts=-N
1919
default-language: Haskell2010

0 commit comments

Comments
 (0)