diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bdd12f..365349c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,7 +139,7 @@ jobs: - name: Install Fyne run: | - go install fyne.io/fyne/v2/cmd/fyne@latest + go install fyne.io/tools/cmd/fyne@latest - name: Install Docker if: ${{ runner.os == 'macos' }} @@ -213,9 +213,9 @@ jobs: working-directory: fyne-cross run: go install - - name: Install Fyne + - name: Install Fyne CLI tools run: | - go install fyne.io/fyne/v2/cmd/fyne@latest + go install fyne.io/tools/cmd/fyne@latest - name: Install Docker if: ${{ runner.os == 'macos' }} diff --git a/internal/command/command.go b/internal/command/command.go index 8a62859..0475706 100644 --- a/internal/command/command.go +++ b/internal/command/command.go @@ -178,13 +178,13 @@ func fyneCommand(binary, command, icon string, ctx Context, image containerImage "-os", target, "-name", ctx.Name, "-icon", icon, - "-appBuild", ctx.AppBuild, - "-appVersion", ctx.AppVersion, + "-app-build", ctx.AppBuild, + "-app-version", ctx.AppVersion, } // add appID to command, if any if ctx.AppID != "" { - args = append(args, "-appID", ctx.AppID) + args = append(args, "-app-id", ctx.AppID) } // add tags to command, if any