You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if-no-files-found: error # Fail the action with an error message if no files are found
74
65
overwrite: false # If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.
if-no-files-found: error # Fail the action with an error message if no files are found
74
65
overwrite: false # If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.
if-no-files-found: error # Fail the action with an error message if no files are found
74
65
overwrite: false # If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.
Copy file name to clipboardExpand all lines: .github/workflows/linux-build.yml
-10Lines changed: 0 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,6 @@ env:
22
22
# Python version to use
23
23
PYTHON_VERSION: 3.12.8
24
24
25
-
# Flutter version to use
26
-
FLUTTER_VERSION: 3.27.4
27
-
28
25
# flet-cli version to install for `flet build`
29
26
FLET_CLI_VERSION: 0.27.5
30
27
@@ -55,19 +52,13 @@ jobs:
55
52
python -m pip install --upgrade pip
56
53
pip install flet-cli==$FLET_CLI_VERSION
57
54
58
-
- name: Setup Flutter ${{ env.FLUTTER_VERSION }}
59
-
uses: subosito/flutter-action@v2
60
-
with:
61
-
flutter-version: ${{ env.FLUTTER_VERSION }}
62
-
63
55
- name: Patch for linux build
64
56
run: |
65
57
sudo apt-get update -y
66
58
sudo apt-get install -y ninja-build libgtk-3-dev
67
59
68
60
- name: Flet Build Linux
69
61
run: |
70
-
flutter config --no-analytics
71
62
flet build linux --verbose --build-number=$BUILD_NUMBER --build-version=$BUILD_VERSION
72
63
73
64
- name: Upload Linux Artifact
@@ -77,4 +68,3 @@ jobs:
77
68
path: build/linux # location of Flet build output
78
69
if-no-files-found: error # Fail the action with an error message if no files are found
79
70
overwrite: false # If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.
if-no-files-found: error # Fail the action with an error message if no files are found
74
65
overwrite: false # If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.
0 commit comments