diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-17 18:07:32 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-17 18:07:32 +0200 |
commit | 61f74d15618e04a4e9a7d7f66881d48779b28925 (patch) | |
tree | b11b99f144ae9038830eca9af7317590bb6bc591 /.github | |
parent | :bug: fix release (diff) | |
download | server-61f74d15618e04a4e9a7d7f66881d48779b28925.tar.xz |
:bug: fix bundle import path
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d96bda3..6daea25b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,28 +14,12 @@ jobs: os: [windows, macos, ubuntu] include: - os: windows - pre: | - 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 - pre: | - ln -sf ../api node_modules/@fosscord/api - ln -sf ../cdn node_modules/@fosscord/cdn - ln -sf ../gateway node_modules/@fosscord/gateway - ln -sf ../util node_modules/@fosscord/util build: npx caxa -i .. -m 'This may take a while to run the first time, please wait...' --output 'fosscord-server.app' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/bundle/dist/start.js' && tar -czf 'fosscord-server-macos.app.tgz' 'fosscord-server.app' artifact: fosscord-server-macos.app.tgz - os: ubuntu - pre: | - ln -sf ../api node_modules/@fosscord/api - ln -sf ../cdn node_modules/@fosscord/cdn - ln -sf ../gateway node_modules/@fosscord/gateway - ln -sf ../util node_modules/@fosscord/util build: npx caxa -i .. -m 'This may take a while to run the first time, please wait...' --output 'fosscord' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/bundle/dist/start.js' && tar -czf 'fosscord-server-linux.tgz' 'fosscord' artifact: fosscord-server-linux.tgz runs-on: ${{ matrix.os }}-latest @@ -53,7 +37,6 @@ jobs: npm install npm i caxa npm run build - ${{ matrix.pre }} ${{ matrix.build }} - uses: actions/upload-artifact@v2 with: |