summary refs log tree commit diff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-17 00:08:59 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-17 00:08:59 +0200
commit575afefd7a8f5cc4f40d296cc0e76025366155a1 (patch)
tree45e7fe017858286d9df838c6fe6780da8084d5f1 /.github/workflows/release.yml
parent:bug: fix windows release (diff)
downloadserver-575afefd7a8f5cc4f40d296cc0e76025366155a1.tar.xz
:bug: fix windows
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 7bdf78aa..c72dea09 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -15,12 +15,11 @@ jobs:
         include:
           - os: windows
             pre: |
-              cmd
-              del /F /S /Q node_modules/@fosscord
-              mklink /D node_modules/@fosscord/api ../api
-              mklink /D node_modules/@fosscord/cdn ../cdn
-              mklink /D node_modules/@fosscord/gateway ../gateway
-              mklink /D node_modules/@fosscord/util ../util
+              cmd /c del /F /S /Q node_modules/@fosscord
+              cmd /c mklink /D node_modules/@fosscord/api ../api
+              cmd /c mklink /D node_modules/@fosscord/cdn ../cdn
+              cmd /c mklink /D node_modules/@fosscord/gateway ../gateway
+              cmd /c mklink /D node_modules/@fosscord/util ../util
             build: npx caxa -i .. -m 'This_may_take_a_while_to_run_the_first_time_please_wait...' --output 'fosscord-server-windows.exe' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/bundle/dist/start.js'
             artifact: fosscord-server-windows.exe
           - os: macos