-
Notifications
You must be signed in to change notification settings - Fork 16
95 lines (78 loc) · 2.51 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Build
on:
workflow_dispatch:
release:
types: [created]
jobs:
build_macos:
runs-on: macos-latest
steps:
# Setup
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
architecture: x64
- uses: actions/setup-node@v2
# Install packaging tools
- name: Install flutter_distributor
run: dart pub global activate flutter_distributor
- name: Install appdmg
run: npm install -g appdmg
# Build and package
- name: Packaging .dmg .zip
run: flutter_distributor package --platform macos --targets dmg,zip --artifact-name "TerminalStudio-${{github.ref_name}}-macos.{{ext}}"
# Publish
- name: Publish to GitHub Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: dist/*/*
build_windows:
runs-on: windows-latest
steps:
# Setup
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
architecture: x64
# Install packaging tools
- name: Install flutter_distributor
run: dart pub global activate flutter_distributor
# Build and package
- name: Packaging .msix .zip
run: flutter_distributor package --platform windows --targets msix,zip --artifact-name "TerminalStudio-${{github.ref_name}}-windows.{{ext}}"
# Publish
- name: Publish to GitHub Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: dist/*/*
build_linux:
runs-on: ubuntu-latest
steps:
# Setup
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
architecture: x64
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
# Install packaging tools
- name: Install flutter_distributor
run: dart pub global activate flutter_distributor
# Build and package
- name: Packaging .deb .zip
run: flutter_distributor package --platform linux --targets deb,zip --artifact-name "TerminalStudio-${{github.ref_name}}-linux.{{ext}}"
# Publish
- name: Publish to GitHub Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: dist/*/*