Skip to content

Commit

Permalink
changed go version to be a minimum and testing build options
Browse files Browse the repository at this point in the history
  • Loading branch information
ndonathan authored Nov 27, 2024
1 parent 2207c56 commit 01dcb1b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.2'
go-version: '>=1.23.2'

- name: Install Dependencies
run: |
Expand All @@ -30,10 +30,12 @@ jobs:
go install github.com/fyne-io/fyne-cross@latest
- name: Build for Windows
run: fyne-cross windows -app-id com.networkrehab.gotasks -arch=amd64 -ldflags -H=windowsgui ./cmd/tasks
run: |
cd cmd/tasks/
fyne-cross windows -arch=* -ldflags -H=windowsgui
- name: Build for Linux
run: fyne-cross linux -app-id com.networkrehab.gotasks -arch=amd64 ./cmd/tasks
run: fyne-cross linux -arch=* ./cmd/tasks

- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 01dcb1b

Please sign in to comment.