summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJohn J. Camilleri <john@digitalgrammars.com>2020-11-19 00:08:07 +0100
committerJohn J. Camilleri <john@digitalgrammars.com>2020-11-19 00:08:07 +0100
commita48bbb3b132d1ef1ba10ca3218e140624fba0b57 (patch)
tree1dc784e10450c651e2e82478f72ec1f6d5170cbd /.github/workflows
parent131d196fadd4b05f2b37371f1ad63dfdd5e692e6 (diff)
Enable server, upload artifact (only exe) to Windows build
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build-windows-package.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/build-windows-package.yml b/.github/workflows/build-windows-package.yml
index 7f9397177..9bced8a01 100644
--- a/.github/workflows/build-windows-package.yml
+++ b/.github/workflows/build-windows-package.yml
@@ -30,13 +30,13 @@ jobs:
- name: Build GF
run: |
- cabal install --only-dependencies
- cabal configure
+ cabal install --only-dependencies -fserver
+ cabal configure -fserver
cabal build
- # - name: Upload artifact
- # uses: actions/upload-artifact@v2
- # with:
- # name: macOS package
- # path: dist/gf-*.pkg
- # if-no-files-found: error
+ - name: Upload exe to artifact
+ uses: actions/upload-artifact@v2
+ with:
+ name: Windows package
+ path: dist\build\gf\gf.exe
+ if-no-files-found: error