Skip to content

Commit

Permalink
Merge pull request #27 from williamtcastro/main
Browse files Browse the repository at this point in the history
Workflow Update
  • Loading branch information
ItsRiprod authored Aug 27, 2024
2 parents d56b3c5 + abefbd3 commit cb996b5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down

0 comments on commit cb996b5

Please sign in to comment.