Skip to content

Commit

Permalink
add build workflow (#2)
Browse files Browse the repository at this point in the history
* Create build.yml

* move workflows folder

* Update build.yml

* Update build.yml

* Update build.yml

* Update build.yml

* delete bin folder

* Update build.yml
  • Loading branch information
beyenilmez authored May 1, 2024
1 parent 98e3c70 commit 6e00250
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build

on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development

jobs:
build:
strategy:
fail-fast: false
matrix:
build:
[
{
name: desktop-manager,
platform: windows/amd64,
os: windows-latest,
},
]
runs-on: ${{ matrix.build.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: dAppServer/[email protected]
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
Binary file removed build/bin/desktop-manager.exe
Binary file not shown.
Binary file not shown.

0 comments on commit 6e00250

Please sign in to comment.