From 4a8f7f2fad184b8e4d9ffd9f5fbed31934e183c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Wed, 15 Apr 2020 23:30:43 +0200 Subject: [PATCH] fix windows web build (build elm.js) (#5) --- .github/workflows/windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 938ab9b2f..661f1b5c2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -60,7 +60,8 @@ jobs: if: matrix.mode == 'Release' run: | cd .\ui\web - .\node_modules\elm\binwrappers\elm-make --yes src\Main.elm --output elm.js + move .\node_modules\elm\binwrappers\elm-make .\elm-make + elm-make --yes src\Main.elm --output elm.js Remove-Item -Recurse -Force .\node_modules - name: Create Distribution