Skip to content

Commit

Permalink
add wails build action
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Apr 11, 2024
1 parent 4bec1a0 commit c56c53f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Wails build

on: [push, pull_request]

jobs:
build:
strategy:
fail-fast: false
matrix:
build:
[
{ name: wailsTest, platform: linux/amd64, os: ubuntu-latest },
{ name: wailsTest, platform: windows/amd64, os: windows-latest },
{ name: wailsTest, platform: darwin/universal, os: macos-latest },
]
runs-on: ${{ matrix.build.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: dAppServer/[email protected]
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}

0 comments on commit c56c53f

Please sign in to comment.