Skip to content

Commit a0e3082

Browse files
committed
see how fyne packages for linux
1 parent aeaf734 commit a0e3082

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/main.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,20 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v2
2222
with:
23-
go-version: 1.16
23+
go-version: 1.22
2424
- name: Install fyne-cross
2525
run: go install github.com/fyne-io/fyne-cross@latest
2626
- name: Cross-compile for Windows
2727
run: fyne-cross windows
2828
- name: Cross-compile for Linux
29-
run: fyne-cross linux
29+
run: |
30+
fyne-package -os linux -icon Icon.png
31+
ls -al
3032
- name: Upload Windows artifact
3133
uses: actions/upload-artifact@v3
3234
with:
3335
name: windows-build
3436
path: fyne-cross/bin/windows-amd64
35-
3637
- name: Upload Linux artifact
3738
uses: actions/upload-artifact@v3
3839
with:
@@ -49,9 +50,7 @@ jobs:
4950
- name: Install fyne
5051
run: go install fyne.io/fyne/v2/cmd/fyne@latest
5152
- name: Build Fyne application for macOS
52-
run: |
53-
fyne package -os darwin -icon Icon.png
54-
ls -al
53+
run: fyne package -os darwin -icon Icon.png
5554
- name: Upload macOS artifact
5655
uses: actions/upload-artifact@v3
5756
with:

0 commit comments

Comments
 (0)