Skip to content

Commit

Permalink
fix(ci): binary name (#15)
Browse files Browse the repository at this point in the history
* fix(ci): fix binary name, pin wails version to 2.5.1
  • Loading branch information
corinz committed Jan 23, 2024
1 parent 5b20155 commit e500040
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Wails build

on:
pull_request:
types: [opened, reopened]
types: [opened, reopened, synchronize]
push:
tags: ['*']

Expand All @@ -12,14 +12,15 @@ jobs:
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}
{name: m8-linux-amd64, platform: linux/amd64, os: ubuntu-latest},
{name: m8-windows-amd64, platform: windows/amd64, os: windows-latest},
{name: m8-darwin-universal, platform: darwin/universal, os: macos-latest}
]
runs-on: ${{ matrix.build.os }}
steps:
- uses: actions/checkout@v4
- uses: dAppServer/[email protected]
with:
wails-version: v2.5.1
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}

0 comments on commit e500040

Please sign in to comment.