File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ jobs:
215
215
overwrite : true
216
216
build-linux :
217
217
if : ${{ github.event.inputs.platform == 'all' || github.event.inputs.platform == 'linux' }}
218
- runs-on : ubuntu-latest
218
+ runs-on : ubuntu-22.04
219
219
needs : [get-release]
220
220
steps :
221
221
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 63
63
runs-on : ${{ matrix.os }}
64
64
strategy :
65
65
matrix :
66
- os : [ windows-latest, macos-latest, ubuntu-latest ]
66
+ os : [ windows-latest, macos-latest, ubuntu-22.04 ]
67
67
needs : [ test ]
68
68
steps :
69
69
- uses : actions/checkout@v3
@@ -73,17 +73,17 @@ jobs:
73
73
- uses : subosito/flutter-action@v2
74
74
with :
75
75
flutter-version : ${{ env.FLUTTER_VERSION }}
76
- - if : runner.os == 'windows-latest '
76
+ - if : runner.os == 'Windows '
77
77
run : |
78
78
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/windows/libgopeed.dll github.com/GopeedLab/gopeed/bind/desktop
79
79
cd ui/flutter
80
80
flutter build windows
81
- - if : runner.os == 'macos-latest '
81
+ - if : runner.os == 'macOS '
82
82
run : |
83
83
go build -tags nosqlite -ldflags="-w -s" -buildmode=c-shared -o ui/flutter/macos/Frameworks/libgopeed.dylib github.com/GopeedLab/gopeed/bind/desktop
84
84
cd ui/flutter
85
85
flutter build macos
86
- - if : runner.os == 'ubuntu-latest '
86
+ - if : runner.os == 'Linux '
87
87
run : |
88
88
sudo apt-get update -y
89
89
sudo apt-get install -y ninja-build libgtk-3-dev libayatana-appindicator3-dev
You can’t perform that action at this time.
0 commit comments