summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-07-11 10:25:28 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-07-11 10:25:28 +0200
commiteb1c3856e217aab4218d9a6b1d54ef980994be10 (patch)
tree1af98f4c25ef26cef0df6f56d95b6d72c38d7fc4
parent:bug: rearrange steps (diff)
downloadserver-eb1c3856e217aab4218d9a6b1d54ef980994be10.tar.xz
:pencil: add uncompression message to releases
-rw-r--r--.github/workflows/release.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml

index 0dd83ed4..ae25efcb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml
@@ -14,16 +14,16 @@ jobs: os: [windows, macos, ubuntu] include: - os: windows - build: npx caxa -i . --output "fosscord-api-windows-${{ github.sha }}.exe" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/dist/start.js" + build: npx caxa -i . -m "This may take a while to run the first time, please wait..." --output "fosscord-api-windows-${{ github.sha }}.exe" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/dist/start.js" artifact: fosscord-api-windows-${{ github.sha }}.exe - os: macos build: | - npx caxa -i . --output "fosscord.app" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/dist/start.js" - tar -czf "fosscord-api-macos-${{ github.sha }}.app.tgz" "fosscord.app" + npx caxa -i . -m "This may take a while to run the first time, please wait..." --output "fosscord-api.app" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/dist/start.js" + tar -czf "fosscord-api-macos-${{ github.sha }}.app.tgz" "fosscord-api.app" artifact: fosscord-api-macos-${{ github.sha }}.app.tgz - os: ubuntu build: | - npx caxa -i . --output "fosscord" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/dist/start.js" + npx caxa -i . -m "This may take a while to run the first time, please wait..." --output "fosscord" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/dist/start.js" tar -czf "fosscord-api-linux-${{ github.sha }}.tgz" "fosscord" artifact: fosscord-api-linux-${{ github.sha }}.tgz runs-on: ${{ matrix.os }}-latest