From abefbd310d1c23e0f38cf4c44ab4aaf414e1495e Mon Sep 17 00:00:00 2001 From: William de Castro Date: Tue, 27 Aug 2024 14:57:08 -0300 Subject: [PATCH] chore: prevent upload of blockmaps --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 99e3e3b..fc747cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,7 +83,15 @@ jobs: package_root: ${{ github.workspace }}/DeskThingServer release: ${{ startsWith(github.ref, 'refs/tags/v') }} - - name: Upload binaries to artifacts + - name: Upload windows binaries to artifacts + if: matrix.os == 'windows-latest' + uses: actions/upload-artifact@v4 + with: + name: deskthing-${{matrix.os}} + path: ${{ github.workspace }}/DeskThingServer/dist/deskthing*.exe + + - name: Upload linux binaries to artifacts + if: matrix.os == 'ubuntu-latest' uses: actions/upload-artifact@v4 with: name: deskthing-${{matrix.os}}