~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
4ce874b3
—
pyrossh 2 years ago
fix build
- .github/workflows/build.yml +25 -23
.github/workflows/build.yml
CHANGED
|
@@ -33,10 +33,6 @@ jobs:
|
|
|
33
33
|
runs-on: ubuntu-latest
|
|
34
34
|
steps:
|
|
35
35
|
- name: Make envfile
|
|
36
|
-
uses: SpicyPizza/create-envfile@v2.0
|
|
37
|
-
with:
|
|
38
|
-
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
39
|
-
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
40
36
|
- uses: actions/checkout@v3
|
|
41
37
|
- uses: actions/setup-java@v2
|
|
42
38
|
with:
|
|
@@ -47,30 +43,31 @@ jobs:
|
|
|
47
43
|
flutter-version: '3.13.0'
|
|
48
44
|
channel: 'stable'
|
|
49
45
|
cache: true
|
|
50
|
-
- run: flutter build appbundle
|
|
51
|
-
ios:
|
|
52
|
-
runs-on: macos-latest
|
|
53
|
-
steps:
|
|
54
46
|
- name: Make envfile
|
|
55
47
|
uses: SpicyPizza/create-envfile@v2.0
|
|
56
|
-
|
|
48
|
+
env:
|
|
57
49
|
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
58
50
|
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
51
|
+
- run: flutter build appbundle
|
|
52
|
+
ios:
|
|
53
|
+
runs-on: macos-latest
|
|
54
|
+
steps:
|
|
59
55
|
- uses: actions/checkout@v3
|
|
60
56
|
- uses: subosito/flutter-action@v2
|
|
61
57
|
with:
|
|
62
58
|
flutter-version: '3.13.0'
|
|
63
59
|
channel: 'stable'
|
|
64
60
|
architecture: x64
|
|
61
|
+
- name: Make envfile
|
|
62
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
63
|
+
env:
|
|
64
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
65
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
65
66
|
- run: flutter build ios --release --no-codesign
|
|
66
67
|
macos:
|
|
67
68
|
runs-on: macos-latest
|
|
68
69
|
steps:
|
|
69
70
|
- name: Make envfile
|
|
70
|
-
uses: SpicyPizza/create-envfile@v2.0
|
|
71
|
-
with:
|
|
72
|
-
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
73
|
-
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
74
71
|
- uses: actions/checkout@v3
|
|
75
72
|
- uses: subosito/flutter-action@v2
|
|
76
73
|
with:
|
|
@@ -78,38 +75,43 @@ jobs:
|
|
|
78
75
|
channel: 'stable'
|
|
79
76
|
architecture: x64
|
|
80
77
|
cache: true
|
|
78
|
+
- name: Make envfile
|
|
79
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
80
|
+
env:
|
|
81
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
82
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
81
83
|
- run: flutter config --enable-macos-desktop
|
|
82
84
|
- run: flutter build macos
|
|
83
85
|
windows:
|
|
84
86
|
runs-on: windows-latest
|
|
85
87
|
steps:
|
|
86
|
-
- name: Make envfile
|
|
87
|
-
uses: SpicyPizza/create-envfile@v2.0
|
|
88
|
-
with:
|
|
89
|
-
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
90
|
-
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
91
88
|
- uses: actions/checkout@v3
|
|
92
89
|
- uses: subosito/flutter-action@v2
|
|
93
90
|
with:
|
|
94
91
|
flutter-version: '3.13.0'
|
|
95
92
|
channel: 'stable'
|
|
96
93
|
cache: true
|
|
94
|
+
- name: Make envfile
|
|
95
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
96
|
+
env:
|
|
97
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
98
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
97
99
|
- run: flutter config --enable-windows-desktop
|
|
98
100
|
- run: flutter build windows
|
|
99
101
|
linux:
|
|
100
102
|
runs-on: ubuntu-latest
|
|
101
103
|
steps:
|
|
102
|
-
- name: Make envfile
|
|
103
|
-
uses: SpicyPizza/create-envfile@v2.0
|
|
104
|
-
with:
|
|
105
|
-
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
106
|
-
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
107
104
|
- uses: actions/checkout@v3
|
|
108
105
|
- uses: subosito/flutter-action@v2
|
|
109
106
|
with:
|
|
110
107
|
flutter-version: '3.13.0'
|
|
111
108
|
channel: 'stable'
|
|
112
109
|
cache: true
|
|
110
|
+
- name: Make envfile
|
|
111
|
+
uses: SpicyPizza/create-envfile@v2.0
|
|
112
|
+
env:
|
|
113
|
+
envkey_TTS_SUBSCRIPTION_KEY: ${{ secrets.TTS_SUBSCRIPTION_KEY }}
|
|
114
|
+
envkey_RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
|
|
113
115
|
- run: |
|
|
114
116
|
sudo apt-get update -y
|
|
115
117
|
sudo apt-get install -y ninja-build libgtk-3-dev
|