From ac003a6e8c936169fcf2d9b3535fdb5a8d155411 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 24 Oct 2025 20:34:42 +0530 Subject: Create release.yml gh action workflow + update brick --- .github/workflows/release.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/release.yml (limited to '.github') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..a16b56e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: Release + +on: workflow_dispatch + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: haskell-actions/setup@v2 + with: + ghc-version: '8.8' + cabal-version: '3.0.0.0' + cabal-update: true + - name: Build tarball + run: make dist + - name: Release + uses: softprops/action-gh-release@v2 + with: + draft: fales + overwrite_files: false + files: daffm.tar.gz -- cgit v1.3.1