diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2020-11-19 00:08:07 +0100 |
|---|---|---|
| committer | John J. Camilleri <john@digitalgrammars.com> | 2020-11-19 00:08:07 +0100 |
| commit | a48bbb3b132d1ef1ba10ca3218e140624fba0b57 (patch) | |
| tree | 1dc784e10450c651e2e82478f72ec1f6d5170cbd | |
| parent | 131d196fadd4b05f2b37371f1ad63dfdd5e692e6 (diff) | |
Enable server, upload artifact (only exe) to Windows build
| -rw-r--r-- | .github/workflows/build-windows-package.yml | 16 |
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 |
