Skip to content

Commit b01b518

Browse files
linux artifacts
1 parent 3b1402f commit b01b518

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

.github/workflows/create_binaries.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Create release binaries for the platforms
1+
name: Upload artifact
22

33
on:
44
push:
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Flutter
1515
uses: subosito/[email protected]
1616
with:
17-
flutter-version: '2.2.2'
17+
channel: 'master'
1818
- name: Enable desktop support
1919
run: flutter config --enable-windows-desktop
2020
- name: Build Windows app
@@ -34,3 +34,22 @@ jobs:
3434
./build/windows/runner/Release/*.dll
3535
./build/windows/runner/Release/data
3636
37+
build_linux:
38+
runs-on: ubuntu-latest
39+
steps:
40+
- name: Check out repository
41+
uses: actions/[email protected]
42+
- name: Install Flutter
43+
uses: subosito/[email protected]
44+
with:
45+
channel: 'master'
46+
- name: Enable desktop support
47+
run: flutter config --enable-linux-desktop
48+
- name: Build Linux app
49+
run: flutter build linux
50+
working-directory: ./build/linux/x64/release/bundle
51+
- name: Create artifact
52+
uses: actions/upload-artifact@v2
53+
with:
54+
name: CCExtractor Flutter GUI Linux
55+
path: ./build/linux/x64/release/bundle/

.github/workflows/create_release_binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Create release binaries for the platforms
1+
name: Upload releases
22

33
on:
44
release:

pubspec.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ packages:
112112
name: charcode
113113
url: "https://pub.dartlang.org"
114114
source: hosted
115-
version: "1.2.0"
115+
version: "1.3.1"
116116
checked_yaml:
117117
dependency: transitive
118118
description:
@@ -645,7 +645,7 @@ packages:
645645
name: test_api
646646
url: "https://pub.dartlang.org"
647647
source: hosted
648-
version: "0.4.0"
648+
version: "0.4.1"
649649
timing:
650650
dependency: transitive
651651
description:
@@ -698,7 +698,7 @@ packages:
698698
window_size:
699699
dependency: "direct main"
700700
description:
701-
path: "plugins\\window_size"
701+
path: "plugins/window_size"
702702
ref: HEAD
703703
resolved-ref: e48abe7c3e9ebfe0b81622167c5201d4e783bb81
704704
url: "git://github.com/google/flutter-desktop-embedding.git"

0 commit comments

Comments
 (0)