Skip to content

Commit 7d86c17

Browse files
committed
Windows: do not compile server, go back to cabal, use cabal's copy command
1 parent 2fda641 commit 7d86c17

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/build-binary-packages.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,10 @@ jobs:
217217
218218
- name: Build GF
219219
run: |
220-
cabal v1-install --only-dependencies -fserver
221-
cabal v1-configure -fserver
222-
cabal v1-build
223-
ls -R dist
224-
copy dist\build\gf\gf.exe C:\tmp-dist
220+
cabal install --only-dependencies
221+
cabal configure
222+
cabal build
223+
cabal copy --destdir="C:\tmp-dist"
225224
226225
- name: Upload artifact
227226
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)