fix(worker): updated worker

This commit is contained in:
darwincereska
2025-11-10 15:57:46 -05:00
parent 8ff4df4bce
commit eb8fa26c18
2 changed files with 14 additions and 6 deletions

View File

@@ -37,6 +37,14 @@ jobs:
- name: Build native binary
run: gradle nativeCompile
- name: Install UPX (Linux)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y upx
- name: Compress binary with UPX (Linux only)
if: matrix.os == 'ubuntu-latest'
run: upx --best --lzma build/native/nativeCompile/notevc
- name: Rename binary for platform
run: |
mv build/native/nativeCompile/notevc notevc-${{ matrix.platform }}