We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff0daf7 commit 3b27751Copy full SHA for 3b27751
.github/workflows/release.yml
@@ -0,0 +1,23 @@
1
+name: Release
2
+
3
+on: workflow_dispatch
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: haskell-actions/setup@v2
11
+ with:
12
+ ghc-version: '8.8'
13
+ cabal-version: '3.0.0.0'
14
+ cabal-update: true
15
+ - name: Build tarball
16
+ run: make dist
17
+ - name: Release
18
+ uses: softprops/action-gh-release@v2
19
20
+ draft: true
21
+ overwrite_files: false
22
+ files:
23
+ - daffm.tar.gz
daffm.cabal
@@ -32,7 +32,7 @@ common common-config
32
build-depends:
33
array,
34
base,
35
- brick == 2.4,
+ brick == 2.10,
36
tomland <= 1.3.3.3,
37
containers <= 0.8,
38
data-default <= 0.8.0.1,
0 commit comments