* added package flag to build ci * bump wails-build-action version * updated dependencies and go version to 1.24 * fixed wails build action version and point to go1.24 * using main version of wails build action * added dependencies step * added write permission for workflow * switched alsa dep for proper dep * added pnpm install step * added pnpm version * added os name to binary output * undo last commit * renamed windows binary, manually handle release * fixed github ref name variable * moved release to different job * set build pre-req for release * fixing artifact handling, manual upload * fixed working directory * fixed artifact naming * fixing upload and download * fixed artifact upload name * fixed upload artifact name again * upload all binaries * fixed input and output binary files * removed temporary artifact deletion * trying to fix the artifact path for upload * fix release glob pattern * fixed glob path for subdirectories from download step * fixed release version * oops wrong release action version * lets put all artifacts in the same directory * remove prerelease * set static run name
46 lines
1.6 KiB
AMPL
46 lines
1.6 KiB
AMPL
module yellowjacket
|
|
|
|
go 1.24
|
|
|
|
toolchain go1.24.2
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.5.0
|
|
github.com/gopxl/beep v1.4.1
|
|
github.com/wailsapp/wails/v2 v2.10.1
|
|
)
|
|
|
|
require (
|
|
github.com/bep/debounce v1.2.1 // indirect
|
|
github.com/ebitengine/oto/v3 v3.3.3 // indirect
|
|
github.com/ebitengine/purego v0.8.2 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/hajimehoshi/go-mp3 v0.3.4 // indirect
|
|
github.com/jchv/go-winloader v0.0.0-20250406163304-c1995be93bd1 // indirect
|
|
github.com/labstack/echo/v4 v4.13.3 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/leaanthony/go-ansi-parser v1.6.1 // indirect
|
|
github.com/leaanthony/gosod v1.0.4 // indirect
|
|
github.com/leaanthony/slicer v1.6.0 // indirect
|
|
github.com/leaanthony/u v1.1.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/samber/lo v1.49.1 // indirect
|
|
github.com/tkrajina/go-reflector v0.5.8 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
github.com/wailsapp/go-webview2 v1.0.21 // indirect
|
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
|
golang.org/x/crypto v0.37.0 // indirect
|
|
golang.org/x/net v0.39.0 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
golang.org/x/text v0.24.0 // indirect
|
|
)
|
|
|
|
// replace github.com/wailsapp/wails/v2 v2.10.1 => /home/logan/go/pkg/mod
|