Should add the windows binaries to the release
Some checks failed
Build / Check (push) Successful in 27s
Build / Linux build (push) Failing after 30s

This commit is contained in:
2026-03-20 12:41:05 -04:00
parent 943f4def55
commit bcb69474f9

View File

@@ -39,11 +39,16 @@ jobs:
- name: Build windows release - name: Build windows release
run: cargo build --release --target x86_64-pc-windows-gnu run: cargo build --release --target x86_64-pc-windows-gnu
- name: Renaming binaries - name: Renaming linux binaries
run: mv target/release/file-srv-gui-v3 file-srv-gui-v3-linux-amd64 && mv target/debug/file-srv-gui-v3 file-srv-gui-v3-linux-debug-amd64 run: mv target/release/file-srv-gui-v3 file-srv-gui-v3-linux-amd64 && mv target/debug/file-srv-gui-v3 file-srv-gui-v3-linux-debug-amd64
- name: Renaming windows binaries
run: mv target/target/x86_64-pc-windows-gnu/release/file-srv-gui-v3.exe file-srv-gui-v3-win.exe && mv target/target/x86_64-pc-windows-gnu/debug/file-srv-gui-v3.exe file-srv-gui-v3-win-debug.exe
- uses: akkuman/gitea-release-action@v1 - uses: akkuman/gitea-release-action@v1
with: with:
files: |- files: |-
file-srv-gui-v3-linux-amd64 file-srv-gui-v3-linux-amd64
file-srv-gui-v3-linux-debug-amd64 file-srv-gui-v3-linux-debug-amd64
file-srv-gui-v3-win.exe
file-srv-gui-v3-win-debug.exe