Skip to content

clean up types, implement formats and download system #4

clean up types, implement formats and download system

clean up types, implement formats and download system #4

Workflow file for this run

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