add webtools install and wails doctor in wails-build workflow #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# Check Wails environment | |
- name: Run Wails Doctor | |
run: wails doctor | |
# Build the Wails project (Wails handles frontend+backend) | |
- name: Build Wails App | |
run: wails build | |
# Optionally: Archive the build artifacts | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wails-build | |
path: ./build # Path to the Wails build output |