From e983516bde3bcc3d673df7406ca10f14d7596ccd Mon Sep 17 00:00:00 2001 From: Karl Ostmo Date: Sun, 30 Jun 2024 13:35:01 -0700 Subject: [PATCH] cabal.project generation for CI --- .github/workflows/haskell-ci.yml | 2 +- vty-input/vty-input.cabal | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index 3fc1c46..889dd06 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -186,7 +186,7 @@ jobs: - name: initial cabal.project for sdist run: | touch cabal.project - echo "packages: $GITHUB_WORKSPACE/source/." >> cabal.project + echo "packages: $GITHUB_WORKSPACE/source/.,$GITHUB_WORKSPACE/source/vty-input" >> cabal.project cat cabal.project - name: sdist run: | diff --git a/vty-input/vty-input.cabal b/vty-input/vty-input.cabal index ad2000f..a9ac3d0 100644 --- a/vty-input/vty-input.cabal +++ b/vty-input/vty-input.cabal @@ -1,15 +1,12 @@ name: vty-input -version: 5.37 +version: 1.0.0 license: BSD3 -license-file: LICENSE -author: AUTHORS maintainer: Jonathan Daugherty (cygnus@foobox.com) homepage: https://github.com/jtdaugherty/vty category: User Interfaces synopsis: Input event definitions for the Vty library cabal-version: 1.18 build-type: Simple -extra-doc-files: LICENSE tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.5 source-repository head