-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (36 loc) · 1.01 KB
/
wails-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build Wails App
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Set up Go environment (required for Wails backend)
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
# Install required packages for Wails
- name: Install Wails dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libgtk-3-dev \
libwebkit2gtk-4.0-dev
# Install Wails CLI
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
# Install Go dependencies (optional if using Go modules)
- name: Install Go dependencies
run: go mod tidy
# Build the Wails project (Wails handles frontend+backend)
- name: Build Wails App
run: wails build