We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75ee226 + f57f99a commit bd3453aCopy full SHA for bd3453a
.github/workflows/build.yml
@@ -21,7 +21,18 @@ jobs:
21
- name: Setup Go
22
uses: actions/setup-go@v5
23
with:
24
- go-version: '1.22'
+ go-version: '1.24'
25
+
26
+ - name: Install dependencies (Ubuntu)
27
+ if: runner.os == 'Linux'
28
+ run: |
29
+ sudo apt-get update
30
+ sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev build-essential pkg-config
31
32
+ - name: Install dependencies (macOS)
33
+ if: runner.os == 'macOS'
34
35
+ brew install gtk+3 webkitgtk pkg-config
36
37
- name: Install Wails CLI
38
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
@@ -45,3 +56,5 @@ jobs:
45
56
name: CAN-Finder-${{ matrix.os }}
46
57
path: |
47
58
build/bin/
59
+ build/*.app
60
+ build/*.exe
0 commit comments